import React from "react"; import { Grid as BaseGrid } from "baseui/layout-grid"; export interface GridProps { children: React.ReactNode; } /** * This is the `` component
* Use this to align the components on a twelve column grid */ const Grid: React.FC = (props) => { const { children } = props; return {children}; }; export default Grid;