UNPKG

boldr-ui

Version:

UI components for Boldr

17 lines (14 loc) 274 B
/* @flow */ import React from 'react'; import Row from './Row'; import Col from './Col'; const CenterBlock = ({ children }): ReactChildren => { return ( <Row xsCenter> <Col xs={6}> {children} </Col> </Row> ); }; export default CenterBlock;