9 lines
263 B
Svelte
9 lines
263 B
Svelte
<script lang="ts">
|
|
import { toast } from 'svelte-sonner';
|
|
import { onMount, getContext } from 'svelte';
|
|
</script>
|
|
|
|
<div class="flex flex-col h-full justify-between text-sm">
|
|
<div class=" space-y-3 overflow-y-scroll scrollbar-hidden h-full">Models</div>
|
|
</div>
|