import * as React from 'react'; import { FunctionComponent } from 'react'; const Row: FunctionComponent = ({children}) => { return (
{children}
); } export default Row;