index.ts 676 B

123456789101112131415
  1. // This file is the entry point of the JavaScript bundle loaded by the
  2. // element library.
  3. //
  4. // All the React components that are used by elements should be imported,
  5. // indicating their source file name, then exported.
  6. //
  7. // Note that we export the 'ColoredLabel' component as 'ExampleLabel', which is
  8. // the name used in the element declaration in the element library.
  9. import ColoredLabel from "./ColoredLabel";
  10. import GameTable from "./GameTable";
  11. import VisualLabelList from "./VisualLabelList";
  12. import LogoWithText from "./LogoWithText";
  13. import Dashboard from "./Dashboard";
  14. export { ColoredLabel as ExampleLabel, GameTable, VisualLabelList, LogoWithText, Dashboard };