Spaces:
Sleeping
Sleeping
File size: 385 Bytes
01d5a5d |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
'use client';
import DashboardLayout from '@/layouts/DashboardLayout';
import { Suspense } from 'react';
interface IProps {
children: React.ReactNode;
}
function Layout(props: IProps): JSX.Element | React.ReactNode | null {
const { children } = props;
return (
<Suspense>
<DashboardLayout>{children}</DashboardLayout>
</Suspense>
);
}
export default Layout;
|