import { ReactNode } from "react" import { Box, useTheme } from "@mui/material" export type FooterProps = { children: ReactNode } export const Footer = ({ children }: FooterProps) => { const theme = useTheme() return ( {children} ) }