Created
August 29, 2019 19:38
-
-
Save nanotroy/257cac3790f76d94e308505c6a507e4e to your computer and use it in GitHub Desktop.
This file contains 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 { AppComponent } from './app.component'; | |
import { FirstComponent } from './first/first.component'; | |
import { SecondComponent } from './second/second.component'; | |
import { MenuComponent } from './menu/menu.component'; | |
import { AppRoutingModule } from './app-routing.module'; | |
import { HttpClientModule } from '@angular/common/http'; | |
@NgModule({ | |
declarations: [ | |
AppComponent, | |
FirstComponent, | |
SecondComponent, | |
MenuComponent | |
], | |
imports: [ | |
BrowserModule, | |
AppRoutingModule, | |
HttpClientModule | |
], | |
providers: [], | |
bootstrap: [AppComponent] | |
}) | |
export class AppModule { } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment