05b0b5d8
Yarik
first commit
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
import { Routes, RouterModule } from '@angular/router';
import { Login } from './login.component';
import { ModuleWithProviders } from '@angular/core';
// noinspection TypeScriptValidateTypes
export const routes: Routes = [
{
path: '',
component: Login
}
];
export const routing: ModuleWithProviders = RouterModule.forChild(routes);
|