import { Link } from 'react-router-dom'; import { Logo } from '../icons/Logo'; import { Button } from '../ui/Button'; import { ClassNameWrapper } from '../../hocs/ClassNameWrapper'; import { useModalStore } from '../../stores/modalStore'; import { ModalWithForm } from './ModalWithForm'; export function Header() { const { setModal } = useModalStore(); return (
} className="h-10" />
); } function HashLink({ path, text }: { path: string; text: string }) { return ( {text} ); }