import cn from "classnames"; import { FunctionComponent } from "react"; import s from "./Navbar.module.css"; interface Props { className?: string; children?: any; } const Navbar: FunctionComponent = ({ children, className }) => { const rootClassName = cn(s.root, className); return
{children}
; }; export default Navbar;