19 lines
423 B
TypeScript
Raw Normal View History

2019-05-15 11:33:39 +09:00
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { AppComponent } from './app.component';
2019-05-21 11:00:14 +09:00
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
2019-05-15 11:33:39 +09:00
@NgModule({
declarations: [
AppComponent
],
imports: [
2019-05-21 11:00:14 +09:00
BrowserModule,
BrowserAnimationsModule
2019-05-15 11:33:39 +09:00
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }