First pass at Listbox tests

This commit is contained in:
Ryan Gossiaux
2021-12-27 15:05:48 -08:00
parent b37e0f3c9c
commit 303c68f79c
2 changed files with 3844 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
<script lang="ts">
import Listbox from "./Listbox.svelte";
export let value: unknown;
</script>
<Listbox {value} on:change={(e) => (value = e.detail)} on:change>
<slot />
</Listbox>