Skip to content

Commit

Permalink
feat: expose components from main module entry point
Browse files Browse the repository at this point in the history
  • Loading branch information
kripod committed Jul 12, 2024
1 parent c782938 commit 5ebd76d
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions src/mod.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
export function helloWorld() {
console.log("Hello, world!");
}
export { Alert, type AlertProps } from "./components/Alert";
export {
ButtonPrimary,
type ButtonPrimaryProps,
} from "./components/ButtonPrimary";
export { Input, type InputProps } from "./components/Input";

0 comments on commit 5ebd76d

Please sign in to comment.