12 lines
226 B
TypeScript
12 lines
226 B
TypeScript
import { Routes } from '@angular/router';
|
|
import { UserListComponent } from './user-list/user-list.component';
|
|
|
|
|
|
export const USERS_ROUTES: Routes = [
|
|
{
|
|
path: '',
|
|
component: UserListComponent,
|
|
title: '',
|
|
},
|
|
];
|