Skip to content

Instantly share code, notes, and snippets.

@A-Kiwams
Last active March 2, 2019 18:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save A-Kiwams/444906f0707089df4e2d7fbfcf2f912d to your computer and use it in GitHub Desktop.
Save A-Kiwams/444906f0707089df4e2d7fbfcf2f912d to your computer and use it in GitHub Desktop.
app_module
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { AppRoutingModule } from './app-routing.module';
import { AppComponent } from './app.component';
import { NavComponent } from './nav/nav.component';
import { AboutComponent } from './about/about.component';
import { PaymentsComponent } from './payments/payments.component';
import { ContactComponent } from './contact/contact.component';
import { HousingComponent } from './housing/housing.component';
import { HomeComponent } from './home/home.component';
@NgModule({
declarations: [
AppComponent,
NavComponent,
AboutComponent,
PaymentsComponent,
ContactComponent,
HousingComponent,
HomeComponent
],
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