feature/sidebar #8

Merged
ilia merged 50 commits from feature/sidebar into main 2026-01-03 10:56:23 +00:00
2 changed files with 13 additions and 0 deletions
Showing only changes of commit 904b48844d - Show all commits

View File

@@ -0,0 +1,3 @@
import AppSidebar from './ui/AppSidebar.svelte';
export { AppSidebar };

View File

@@ -0,0 +1,10 @@
<script lang="ts">
import { CategoryFilter } from '$features/CategoryFilter';
import * as Sidebar from '$shared/shadcn/ui/sidebar/index';
</script>
<Sidebar.Root>
<Sidebar.Content>
<CategoryFilter />
</Sidebar.Content>
</Sidebar.Root>