import { useNavigate } from 'react-router-dom'; import { Icon } from '../shared/Icon'; import { Tooltip } from '../shared/Tooltip'; import { useFlowStore } from '../../store/useFlowStore'; export function TopNavBar() { const navigate = useNavigate(); const toggleReferencePanel = useFlowStore((s) => s.toggleReferencePanel); const toggleCommandPalette = useFlowStore((s) => s.toggleCommandPalette); return (
yadflow yadflow
); }