You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

22 lines
508 B

  1. import { lazy } from 'react';
  2. import Loadable from 'components/Loadable';
  3. const MainLayout = Loadable(lazy(() => import('layout/MainLayout')));
  4. // render - dashboard
  5. const TestMail = Loadable(lazy(() => import('pages/_Test/Mail')));
  6. // ==============================|| MAIN ROUTING ||============================== //
  7. const TestRoutes = {
  8. path: '/',
  9. element: <MainLayout />,
  10. children: [
  11. {
  12. path: 'test/sendMail',
  13. element: <TestMail/>
  14. },
  15. ]
  16. };
  17. export default TestRoutes;