Newer
Older
import { NgModule } from '@angular/core';
import { RouterModule, Routes } from '@angular/router';
const routes: Routes = [
{
path:"list",
component: UserListComponent
},
{ path: '', redirectTo: "list", pathMatch:"full" },
];