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