From c0c3e3d792528559fedbb5d4507490c887b7e6c5 Mon Sep 17 00:00:00 2001 From: Christoph Urlacher Date: Thu, 12 Dec 2024 04:37:34 +0100 Subject: [PATCH] Components: Add index.ts for easier importing --- src/lib/components/index.ts | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 src/lib/components/index.ts diff --git a/src/lib/components/index.ts b/src/lib/components/index.ts new file mode 100644 index 0000000..9aa9168 --- /dev/null +++ b/src/lib/components/index.ts @@ -0,0 +1,7 @@ +import FileInput from "./FileInput.svelte"; +import Input from "./Input.svelte"; +import Password from "./Password.svelte"; +import Username from "./Username.svelte"; +import Button from "./Button.svelte"; + +export { FileInput, Input, Username, Password, Button };