| 23 | } |
| 24 | |
| 25 | interface SideNavProps { |
| 26 | items: NavItem[]; |
| 27 | setOpen?: (open: boolean) => void; |
| 28 | className?: string; |
| 29 | } |
| 30 | |
| 31 | export function SideNav({ items, setOpen, className }: SideNavProps) { |
| 32 | const user = useUser(); |
nothing calls this directly
no outgoing calls
no test coverage detected