Skip to content

Instantly share code, notes, and snippets.

@lydemann
Created March 29, 2019 06:31
Embed
What would you like to do?
app.routes.ts
const appRoutes: Routes = [
{
path: rootPath,
component: TodoListComponent,
pathMatch: 'full'
},
{
path: completedTodoPath,
loadChildren: './todo-list-completed/todo-list-completed.module#TodoListCompletedModule'
}
];
export const appRouterModule = RouterModule.forRoot(appRoutes);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment