I'm trying to use the 'react-table' library in my application. I'm not sure what I'm doing wrong but all of the elements in the table appear vertically on the left side, and not in a grid. This was happening in my application, so I tried creating a new app to just display this table.
I copied this example word for word: here The only difference is the data I hard coded two records.
This is what the page shows:
Name
Info
Stats
First Name
Last Name
Age
Status
Visits
Bret
Till
33
spoken for
4
Is there some CSS issue that's taking away inline or something? I'm new to react and even worse with CSS. I did remember to add this import:
import "react-table/react-table.css";
Here's a minimal repo that illustrates the issue: