import NavbarWrapper from "./NavbarWrapper"; interface Props { children: React.ReactNode; className?: string; } export default function NavbarCenterWrapper({ children, className }: Props) { return (
{children}
); }