Skip to content

Commit

Permalink
fix: export Dropdown & Import so Combobox can consume
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisfalaska authored and chrisfalaska committed Dec 4, 2024
1 parent 08fd308 commit 18d5103
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions components/dropdown/src/index.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
import { AuroDropdown } from './auro-dropdown.js';

AuroDropdown.register();

// export so other components can import the component
export { AuroDropdown };
3 changes: 3 additions & 0 deletions components/input/src/index.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
import { AuroInput } from './auro-input.js';

AuroInput.register();

// export so other components can import the component
export { AuroInput };

0 comments on commit 18d5103

Please sign in to comment.