import clsx from 'clsx'; import { PropsWithChildren } from 'react'; import { TableProps } from 'react-table'; import { useTableContext } from './TableContainer'; export function Table({ children, className, role, style, }: PropsWithChildren) { useTableContext(); return (
{children}
); }