import type { FC, PropsWithChildren } from 'react' import * as React from 'react' type ContentBodyProps = PropsWithChildren const ContentBody: FC = ({ children }) => { return (
{children}
) } export default React.memo(ContentBody)