aboutsummaryrefslogblamecommitdiffhomepage
path: root/client/src/app/+home/home.module.ts
blob: 102cdc2964706f17f9858184b710c9028074c2c9 (plain) (tree)
























                                                                           
import { NgModule } from '@angular/core'
import { SharedCustomMarkupModule } from '@app/shared/shared-custom-markup'
import { SharedMainModule } from '@app/shared/shared-main'
import { HomeRoutingModule } from './home-routing.module'
import { HomeComponent } from './home.component'

@NgModule({
  imports: [
    HomeRoutingModule,

    SharedMainModule,
    SharedCustomMarkupModule
  ],

  declarations: [
    HomeComponent
  ],

  exports: [
    HomeComponent
  ],

  providers: [ ]
})
export class HomeModule { }