import cn from "classnames"; import React, { FunctionComponent } from "react"; import s from "./Navbar.module.css"; import { Logo, Container } from "@components/ui"; import { Searchbar } from "@components/core"; import { UserNav } from "@components/core"; interface Props { className?: string; } const Navbar: FunctionComponent = ({ className }) => { const rootClassName = cn(s.root, className); return (
); }; export default Navbar;