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