| 5 | import { cn } from '@/lib/utils'; |
| 6 | import { useSidebar } from '@/hooks/useSidebar'; |
| 7 | interface SidebarProps { |
| 8 | className?: string; |
| 9 | } |
| 10 | |
| 11 | export default function Sidebar({ className }: SidebarProps) { |
| 12 | const { isOpen, toggle } = useSidebar(); |
nothing calls this directly
no outgoing calls
no test coverage detected