import { FC, ReactNode } from "react" interface BodyProps { children?: ReactNode } const Body: FC = ({ children }) =>
{children}
export default Body