import React, { useContext } from 'react'; import clsx from 'classnames'; import { ScrollSync } from 'react-scroll-sync'; import TableContext from './TableContext'; /** * Table wrapper. */ export default function TableWrapper({ children }) { const { table: { getTableProps }, props: { sticky, pagination, loading, expandable, virtualizedRows, className, styleName, size, }, } = useContext(TableContext); return (