home.module.ts 392 Bytes
Newer Older
Phattaraphon Pewruang's avatar
Phattaraphon Pewruang committed
1 2 3 4 5 6 7 8 9 10 11 12 13
import { NgModule } from '@angular/core';
import { CommonModule } from '@angular/common';

import { HomeRoutingModule } from './home-routing.module';

import { HomeComponent } from './home.component';
import { SharedModule } from '../shared/shared.module';

@NgModule({
  declarations: [HomeComponent],
  imports: [CommonModule, SharedModule, HomeRoutingModule]
})
export class HomeModule {}