2019-11-29 07:26:41 +00:00
|
|
|
import { CommonModule } from '@angular/common';
|
|
|
|
import { HttpClientModule } from '@angular/common/http';
|
2019-11-29 02:20:50 +00:00
|
|
|
import { NgModule } from '@angular/core';
|
2019-11-29 03:35:03 +00:00
|
|
|
import { BrowserModule } from '@angular/platform-browser';
|
2019-11-29 03:44:39 +00:00
|
|
|
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
|
2019-11-29 02:20:50 +00:00
|
|
|
import { AppRoutingModule } from './app-routing.module';
|
|
|
|
import { AppComponent } from './app.component';
|
|
|
|
|
|
|
|
@NgModule({
|
|
|
|
declarations: [
|
|
|
|
AppComponent
|
|
|
|
],
|
|
|
|
imports: [
|
2019-11-29 07:26:41 +00:00
|
|
|
CommonModule,
|
2019-11-29 02:20:50 +00:00
|
|
|
BrowserModule,
|
2019-11-29 03:44:39 +00:00
|
|
|
BrowserAnimationsModule,
|
2019-11-29 07:26:41 +00:00
|
|
|
HttpClientModule,
|
2019-11-29 03:44:39 +00:00
|
|
|
AppRoutingModule,
|
2019-11-29 02:20:50 +00:00
|
|
|
],
|
|
|
|
providers: [],
|
|
|
|
bootstrap: [AppComponent]
|
|
|
|
})
|
|
|
|
export class AppModule { }
|