import { Table as BS5Table } from 'react-bootstrap-5' import classnames from 'classnames' export function TableContainer({ responsive, bordered, children, }: React.ComponentProps) { return (
{children}
) } type TableProps = React.ComponentProps & { container?: boolean } function Table({ container = true, responsive, bordered, ...rest }: TableProps) { return container ? ( ) : ( ) } export default Table