Make it possible to use the DataTable easily from Javascript. Currently it needs to be loaded like this: ``` import 'dash-table/dash_table/bundle'; import domReady from './domReady'; const DataTable = window.dash_table.DataTable; ReactDOM.render(<DataTable columns={['a', 'b', 'c'].map(i => ({ id: i, name: i }))} />, document.getElementById('root')); ``` We want to be able to do this: ``` import DataTable from 'dash-table'; // etc... ```
Make it possible to use the DataTable easily from Javascript.
Currently it needs to be loaded like this:
We want to be able to do this: