epic_explorer/src/app/app.module.ts

24 lines
724 B
TypeScript
Raw Normal View History

2019-06-27 06:48:08 +00:00
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
2019-07-09 09:22:36 +00:00
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
2019-06-27 06:48:08 +00:00
import { AppRoutingModule } from './app-routing.module';
import { AppComponent } from './app.component';
import { HttpClientModule } from '@angular/common/http';
import { NotFoundComponent } from './view/home/not-found/not-found.component';
@NgModule({
declarations: [
AppComponent,NotFoundComponent
],
imports: [
BrowserModule.withServerTransition({ appId: 'serverApp' }),
HttpClientModule,
AppRoutingModule,
2019-07-09 09:22:36 +00:00
BrowserAnimationsModule,
2019-06-27 06:48:08 +00:00
],
providers: [],
2019-07-19 06:06:21 +00:00
bootstrap: [AppComponent]
2019-06-27 06:48:08 +00:00
})
export class AppModule { }