simple page with news from all around the globe
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.

13 satır
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 { }