| 12345678910111213141516171819 |
- import { NgModule } from '@angular/core';
- import { CommonModule } from '@angular/common';
- import { HomeComponent } from './home.component';
- import { HomeRoutingModule } from './home-routing.module';
- import { SharedComponentsModule } from 'src/app/components/shared/shared-components.module';
- @NgModule({
- declarations: [
- HomeComponent
- ],
- imports: [
- HomeRoutingModule,
- CommonModule,
- SharedComponentsModule,
- ]
- })
- export class HomeModule { }
|