Blame view

src/app/pages/register/register.routing.ts 277 Bytes
05b0b5d8   Yarik   first commit
1
2
3
4
5
6
7
8
9
10
11
12
13
  import { Routes, RouterModule }  from '@angular/router';
  
  import { Register } from './register.component';
  
  // noinspection TypeScriptValidateTypes
  const routes: Routes = [
    {
      path: '',
      component: Register
    }
  ];
  
  export const routing = RouterModule.forChild(routes);