1234567891011 |
- // 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";
- export { ColoredLabel as ExampleLabel };
|