Component options: - `Table` - Clean, but it conflicts with `html.Table`. Not necessarily a blocker - `DataTable` - Seems fine. Matches the `data=` property too. - `InteractiveTable` - too long - Any other options? Library options: - `import dash_table as dt` - `import dash_interactive_table as dit` :x: - `import dash_spreadsheet as ds` I think I prefer either: ``` import dash_table as dt dt.DataTable ``` or what we currently have: ``` import dash_table as dt dt.Table ```
Component options:
Table- Clean, but it conflicts withhtml.Table. Not necessarily a blockerDataTable- Seems fine. Matches thedata=property too.InteractiveTable- too longLibrary options:
import dash_table as dtimport dash_interactive_table as dit❌import dash_spreadsheet as dsI think I prefer either:
or what we currently have: