content-routes.ts 193 Bytes
Newer Older
Ooh-Ao committed
1 2 3 4 5 6 7 8 9 10 11
import { Routes } from "@angular/router";

export const Pages:Routes =
[

  {
    path: '',
    loadChildren: () => import('../../components/page/page.module').then(m => m.PageModule)
  },

];