fix(angular): router-outlet animation

This commit is contained in:
Manu Mtz.-Almeida
2018-03-21 19:34:22 +01:00
parent f0a40fabb9
commit 943e2f73c0
15 changed files with 315 additions and 67 deletions

View File

@ -0,0 +1,14 @@
import { NgModule } from '@angular/core';
import { Routes, RouterModule } from '@angular/router';
import { PageThree } from './page-three';
const routes: Routes = [
{ path: '', component: PageThree }
];
@NgModule({
imports: [RouterModule.forChild(routes)],
exports: [RouterModule]
})
export class PageThreeRoutingModule { }