import React, { FC } from 'react' import styles from './table.module.css' type TableTypes = { /** * Table components */ children: React.ReactNode; /** * Border */ celled: boolean; } export const Table: FC = ( { children, celled = true } ) => { return ( { children }
) };