// import { lazy } from 'react';
// project import
// import GuestGuard from 'utils/route-guard/GuestGuard';
import CommonLayout from 'layout/CommonLayout';
// import Loadable from 'components/Loadable';
// render - login
// const AuthLogin = Loadable(lazy(() => import('pages/auth/login')));
// const AuthRegister = Loadable(lazy(() => import('pages/auth/register')));
// const AuthForgotPassword = Loadable(lazy(() => import('pages/auth/forgot-password')));
// const AuthCheckMail = Loadable(lazy(() => import('pages/auth/check-mail')));
// const AuthResetPassword = Loadable(lazy(() => import('pages/auth/reset-password')));
// const AuthCodeVerification = Loadable(lazy(() => import('pages/auth/code-verification')));
// ==============================|| AUTH ROUTING ||============================== //
const LoginRoutes = {
path: '/',
children: [
{
path: '/',
element: (
//
//
),
children: [
// {
// path: '/',
// element:
// },
// {
// path: 'login',
// element:
// },
// {
// path: 'register',
// element:
// },
// {
// path: 'forgot-password',
// element:
// },
// {
// path: 'check-mail',
// element:
// },
// {
// path: 'reset-password',
// element:
// },
// {
// path: 'code-verification',
// element:
// }
]
}
]
};
export default LoginRoutes;