shoelaces for react
React component implementations for shoelaces
npm install --save react-shoelaces
import { Container } from 'react-shoelaces'
export const MyContainer = ({ children }) =>
<Container>
{children}
</Container>
import { Row } from 'react-shoelaces'
export const MyRow = ({ children }) =>
<Row gutter='0.5em'>
{children}
</Row>
import { Col } from 'react-shoelaces'
export const MyCol = ({ children }) =>
<Col xs={1} md={6/12} gutter='0.5em'>
{children}
</Col>
import { Flex } from 'react-shoelaces'
export const MyFlex = ({ children }) =>
<Flex inline column first>
{children}
</Flex>