inference-api / src /routes /+layout.svelte
enzostvs's picture
enzostvs HF Staff
migration in svelte
de2d4cd
raw
history blame
201 Bytes
<script>
import Sidebar from '$lib/components/sidebar/Sidebar.svelte';
import '$lib/styles/tailwind.css';
</script>
<div class="app flex items-start justify-start">
<Sidebar />
<slot />
</div>