epic_explorer/src/app/app.module.ts
2019-07-09 14:52:36 +05:30

24 lines
742 B
TypeScript

import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
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,
BrowserAnimationsModule,
],
providers: [],
bootstrap: [AppComponent,NotFoundComponent]
})
export class AppModule { }