app.component.module.ts 350 B

123456789101112
  1. import { NgModule } from '@angular/core';
  2. import { AppComponent } from './app.component';
  3. import { CoreModule } from './core/core.module';
  4. import { SharedModule } from './shared/shared.module';
  5. @NgModule({
  6. imports: [SharedModule, CoreModule],
  7. declarations: [AppComponent],
  8. exports: [AppComponent],
  9. })
  10. export class AppComponentModule {}