Project

General

Profile

1
import { NgModule } from '@angular/core';
2

    
3
import { SharedModule } from '../shared/shared.module';
4
import { TestComponent } from './test.component';
5
import { TestRoutingModule } from './test-routing.module';
6

    
7

    
8
 
9
@NgModule({
10
  imports: [
11
    SharedModule,
12
    TestRoutingModule,
13

    
14
  ],
15
  declarations: [
16
    TestComponent
17
  ]
18
})
19
export class TestModule { }
(3-3/3)