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