Skip to content

Instantly share code, notes, and snippets.

@camilogiraldo
Created January 18, 2018 02:46
Show Gist options
  • Save camilogiraldo/cce75a28e48c361926cd7d552e9b5047 to your computer and use it in GitHub Desktop.
Save camilogiraldo/cce75a28e48c361926cd7d552e9b5047 to your computer and use it in GitHub Desktop.
AppModule
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { AppRoutingModule } from './app-routing.module';
import { AppComponent } from './app.component';
import { HomeComponentComponent } from './home-component/home-component.component';
import { BigFeatureComponentComponent } from './big-feature-component/big-feature-component.component';
@NgModule({
declarations: [
AppComponent,
HomeComponentComponent,
BigFeatureComponentComponent
],
imports: [
BrowserModule,
AppRoutingModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment