Last active
March 2, 2019 18:42
-
-
Save A-Kiwams/444906f0707089df4e2d7fbfcf2f912d to your computer and use it in GitHub Desktop.
app_module
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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