Search code examples
reactjstabulator

Rendering as plain text


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


Solution

  • 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