Remove unused ManagedListbox test component

This commit is contained in:
Ryan Gossiaux
2023-06-10 20:37:03 -07:00
parent 3be62f04db
commit f81c75214e

View File

@@ -1,8 +0,0 @@
<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>