First Commit
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
import PropTypes from 'prop-types';
|
||||
|
||||
// @next
|
||||
import dynamic from 'next/dynamic';
|
||||
|
||||
// @project
|
||||
const AdminLayout = dynamic(() => import('@/layouts/AdminLayout'));
|
||||
|
||||
/*************************** LAYOUT - ADMIN ***************************/
|
||||
|
||||
export default function Layout({ children }) {
|
||||
return <AdminLayout>{children}</AdminLayout>;
|
||||
}
|
||||
|
||||
Layout.propTypes = { children: PropTypes.any };
|
||||
Reference in New Issue
Block a user