import React, { useContext } from 'react'; import { ScrollSyncPane } from 'react-scroll-sync'; import TableContext from './TableContext'; export default function TableTBody({ children }) { const { table: { getTableBodyProps } } = useContext(TableContext); return (
{ children }
); }