import { Box } from '@chakra-ui/react'; import React from 'react'; export interface FooterProps { children: React.ReactNode; } const Footer: React.FC = ({ children }) => { return ( {children} ); }; export default Footer;