feat(AppSidebar): create first version of AppSidebar widget

This commit is contained in:
Ilia Mashkov
2026-01-02 16:10:45 +03:00
parent 82d36ad156
commit 904b48844d
2 changed files with 13 additions and 0 deletions

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>