aboutsummaryrefslogtreecommitdiffstats
path: root/code/app/src/routes/book
diff options
context:
space:
mode:
Diffstat (limited to 'code/app/src/routes/book')
-rw-r--r--code/app/src/routes/book/inputs/+page.svelte9
1 files changed, 8 insertions, 1 deletions
diff --git a/code/app/src/routes/book/inputs/+page.svelte b/code/app/src/routes/book/inputs/+page.svelte
index e4d19ff..9118a54 100644
--- a/code/app/src/routes/book/inputs/+page.svelte
+++ b/code/app/src/routes/book/inputs/+page.svelte
@@ -1,6 +1,7 @@
<script lang="ts">
import { TextArea, Input, Combobox } from "$lib/components";
import { DatabaseIcon } from "$lib/components/icons";
+ import LL from "$lib/i18n/i18n-svelte";
let value;
let i = 0;
@@ -27,7 +28,13 @@
<section>
<h2>Combobox</h2>
- <Combobox {options} label="Wiii" multiple createable on_create_async={add} />
+ <Combobox
+ {options}
+ label="Wiii"
+ multiple
+ createable
+ on_create_async={add}
+ />
</section>
<section>