import { useContext } from 'react'; import { CLASSES, ROLES } from '@tabulus/constants'; import { TableManager } from '@tabulus/contexts'; import { Row } from '../Row'; import { TableHolder } from './styled'; import type { RowsProps } from './types'; import type { FC } from 'react'; const Rows: FC = () => { const { rows } = useContext(TableManager); return ( {rows.map((row, index) => ( ))} ); }; export { Rows };