import React from 'react' import { Row } from '../Row/Row' import { Cell } from '../Cell/Cell' export type Props = { children: React.ReactNode } export const FullRow: React.FC = ({ children }) => ( {children} )