import * as React from 'react'; import './Footer.scss'; export interface FooterProps { children: React.ReactNode; } const Footer = ({ children }: FooterProps) => ; export default Footer;