home.module.ts 465 B

12345678910111213141516171819
  1. import { NgModule } from '@angular/core';
  2. import { CommonModule } from '@angular/common';
  3. import { HomeComponent } from './home.component';
  4. import { HomeRoutingModule } from './home-routing.module';
  5. import { SharedComponentsModule } from 'src/app/components/shared/shared-components.module';
  6. @NgModule({
  7. declarations: [
  8. HomeComponent
  9. ],
  10. imports: [
  11. HomeRoutingModule,
  12. CommonModule,
  13. SharedComponentsModule,
  14. ]
  15. })
  16. export class HomeModule { }