feat(front) : add shared useModules/useSidebar composables and sidebar types

This commit is contained in:
Matthieu
2026-06-19 15:05:35 +02:00
parent 0ee82c8b62
commit 51de96c797
3 changed files with 64 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
export type SidebarItem = {
label: string
to: string
icon: string
}
export type SidebarSection = {
label: string
icon: string
items: SidebarItem[]
}