All files / components/grid index.js

0% Statements 0/15
0% Branches 0/4
0% Functions 0/4
0% Lines 0/3
1 2 3 4 5 6 7 8 9 10 11                     
import React from 'react'
import { Grid as FlexBoxGrid } from 'react-flexbox-grid'
 
const Grid = props => (
  <FlexBoxGrid {...props} />
)
 
export { Col } from './col'
export { Row } from './row'
export { Grid }