import { MagnifyingGlassIcon, UserIcon } from "@heroicons/react/24/outline"; import { Link, NavLink } from "react-router-dom"; import { memo } from "react"; import { NAV_ITEMS } from "./constants"; import { SearchBar } from "./SearchBar"; import { Logo } from "./Logo"; interface HeaderProps { onSearch?: (query: string) => void; } export const Header = memo(function Header({ onSearch }: HeaderProps) { return (
{/* Main Content */}
{/* User Actions */}
Login
{/* Navigation */}
); });