'use client' import { useState } from 'react' interface NavigationToggleProps { icon?: string title: string children: React.ReactNode } export function NavigationToggle({ icon, title, children }: NavigationToggleProps) { const [isExpanded, setIsExpanded] = useState(false) return (
{isExpanded && children}
) }