/** * Props for the PageBody component. * * @since 3.19.0 */ type PageBodyProps = { className?: string; children: React.ReactNode; } /** * Page body component. * * Used to wrap the main content of a dashboard page. * * @since 3.19.0 * * @param {PageBodyProps} props The component's props. */ export const PageBody = ( { className, children, }: Readonly ): React.JSX.Element => { return (
{ children }
); };