Blame view

src/app/pages/pages.module.ts 355 Bytes
05b0b5d8   Yarik   first commit
1
2
3
4
5
6
7
8
9
10
11
12
13
14
  import { NgModule }      from '@angular/core';
  import { CommonModule }  from '@angular/common';
  
  import { routing }       from './pages.routing';
  import { NgaModule } from '../theme/nga.module';
  
  import { Pages } from './pages.component';
  
  @NgModule({
    imports: [CommonModule, NgaModule, routing],
    declarations: [Pages]
  })
  export class PagesModule {
  }