index.ts 457 B

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