import React from 'react' import { css } from '@emotion/css' type FooterProps = { } const Footer: React.FC = ({ children }) => { return (
) } export default Footer