mirror of
https://github.com/trezor/trezor-wallet
synced 2025-07-16 03:28:11 +00:00
17 lines
295 B
JavaScript
17 lines
295 B
JavaScript
import styled from 'styled-components';
|
|
import React from 'react';
|
|
|
|
const Section = styled.section`
|
|
width: 320px;
|
|
display: inline-block;
|
|
vertical-align: top;
|
|
`;
|
|
|
|
const AsideSection = (props) => (
|
|
<Section>
|
|
{props.children}
|
|
</Section>
|
|
);
|
|
|
|
export default AsideSection;
|