I am creating a table in react using react-table library. Few days back, I had created a table using the same library and faced no issues. But today I am getting the following e
I don't know which version of React Table you're using, but looking at the code of the latest version (here), there is no default export, neither a ReactTable export.
It seems that it is now using hooks, so you should use the useTable hook to create a table with the latest version (doc here).