import { Box, Divider } from '@mui/material'; import { ReactNode } from 'react'; interface FooterProps { children: ReactNode; } function Footer(props: FooterProps) { return ( {props.children} ); } export { Footer };