simple page with news from all around the globe
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

13 行
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 { }