123456789101112131415 |
- // This file is the entry point of the JavaScript bundle loaded by the
- // element library.
- //
- // All the React components that are used by elements should be imported,
- // indicating their source file name, then exported.
- //
- // Note that we export the 'ColoredLabel' component as 'ExampleLabel', which is
- // the name used in the element declaration in the element library.
- import ColoredLabel from "./ColoredLabel";
- import GameTable from "./GameTable";
- import VisualLabelList from "./VisualLabelList";
- import LogoWithText from "./LogoWithText";
- import Dashboard from "./Dashboard";
- export { ColoredLabel as ExampleLabel, GameTable, VisualLabelList, LogoWithText, Dashboard };
|