]>
Commit | Line | Data |
---|---|---|
2539932e C |
1 | import { NgModule } from '@angular/core' |
2 | import { SharedCustomMarkupModule } from '@app/shared/shared-custom-markup' | |
3 | import { SharedMainModule } from '@app/shared/shared-main' | |
4 | import { HomeRoutingModule } from './home-routing.module' | |
5 | import { HomeComponent } from './home.component' | |
6 | ||
7 | @NgModule({ | |
8 | imports: [ | |
9 | HomeRoutingModule, | |
10 | ||
11 | SharedMainModule, | |
12 | SharedCustomMarkupModule | |
13 | ], | |
14 | ||
15 | declarations: [ | |
16 | HomeComponent | |
17 | ], | |
18 | ||
19 | exports: [ | |
20 | HomeComponent | |
21 | ], | |
22 | ||
23 | providers: [ ] | |
24 | }) | |
25 | export class HomeModule { } |