import { FC } from 'react' import s from './Header.module.scss' interface Props { className?: string children?: any } const Header: FC = ({ }: Props) => { return (
This is Header

This is heading

This is logo text
) } export default Header