import { memo } from "react"; import classNames from "classnames"; import Selfie from "../Selfie/Selfie"; import Menu from "../Menu/Menu"; import type { HTMLAttributes } from "react"; import styles from "./Header.module.css"; type Props = HTMLAttributes; const Header = ({ className }: Props) => (
); export default memo(Header);