1
0
mirror of https://github.com/trezor/trezor-wallet synced 2025-07-16 03:28:11 +00:00
trezor-wallet/src/js/components/wallet/aside/AsideSection.js
2018-08-15 09:12:53 +02:00

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;