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