import Col from './col'
import Row from './row'
let Grid = {
  Col: Col,
  Row: Row
};

export default Grid;
export { Col, Row }

