import cn from 'classnames' import { FC } from 'react' import s from './Footer.module.css' import { Container } from '@components/ui' interface Props { className?: string children?: any } const Footer: FC = ({ className }) => { const rootClassName = cn(s.root, className) return ( ) } export default Footer