To start in live mode:
$ npm run devThis app is build around the components provided by material-ui. We try to compose instead of extending as often as possible.
All built-in components are prefixed with T.
Our base table component. Given an array of entries, it will render a row of the given type. This means that not only is TTable given the data to display, but also how to render each entry in the data. You do this by providing a react component usin gthe rowType property.
entriesan array containing the data to renderrowTypethe react component to use for each row of data
A built in row renderer.