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.

fan-zone-routing.module.ts 352 B

1234567891011121314151617
  1. import { NgModule } from '@angular/core';
  2. import { Routes, RouterModule } from '@angular/router';
  3. import { FanZonePage } from './fan-zone.page';
  4. const routes: Routes = [
  5. {
  6. path: '',
  7. component: FanZonePage
  8. }
  9. ];
  10. @NgModule({
  11. imports: [RouterModule.forChild(routes)],
  12. exports: [RouterModule],
  13. })
  14. export class FanZonePageRoutingModule {}