simple page with news from all around the globe
Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

13 lines
283B

  1. import { NgModule } from '@angular/core';
  2. import { Routes, RouterModule } from '@angular/router';
  3. const routes: Routes = [];
  4. @NgModule({
  5. imports: [RouterModule.forRoot(routes, {
  6. initialNavigation: 'enabled'
  7. })],
  8. exports: [RouterModule]
  9. })
  10. export class AppRoutingModule { }