Reputation: 237
I am using the react wrapper with the latest version of tabulator. All styles seem to be missing, so everything is rendering as concatenated plain text. Is there a step I'm missing other than what is in the quick start? Thanks
Upvotes: 0
Views: 75
Reputation: 237
Thanks -- I had the css but not the styles -- probably a cut-paste error or accidental import deletion.
Upvotes: 0
Reputation: 4147
You may have missed to include the css imports!
import 'react-tabulator/lib/styles.css'; // required styles
import 'react-tabulator/lib/css/tabulator.min.css'; // theme
Hope this helps
Upvotes: 2