import { useContext } from 'react'; import { CLASSES, ROLES } from '@tabulus/constants'; import { TableManager } from '@tabulus/contexts'; import { Footer } from '../Footer'; import { Header } from '../Header'; import { Rows } from '../Rows'; import { TableWrapper } from './styled'; import type { TableProps } from './types'; import type { FC } from 'react'; const Table: FC = () => { const { id } = useContext(TableManager); return (