import { FC, PropsWithChildren } from "react"; const Body: FC = ({ children }) => { return
{children}
; }; export default Body;