/* @flow */ import React from 'react'; import Row from './Row'; import Col from './Col'; const CenterBlock = ({ children }): ReactChildren => { return ( {children} ); }; export default CenterBlock;