import { BrowserModule } from '@angular/platform-browser'; import { NgModule } from '@angular/core'; import { AppRoutingModule } from './app.routing.module'; import { AppComponent } from './app.component'; import { HomeComponent } from './home/home.component'; import { CoreModule } from './core/core.module'; import { SharedModule } from './shared/shared.module'; @NgModule({ imports: [ BrowserModule, AppRoutingModule, CoreModule, SharedModule ], declarations: [ AppComponent, HomeComponent ], providers: [], bootstrap: [ AppComponent ] }) export class AppModule { }