Skip to content

Instantly share code, notes, and snippets.

@glutengo
Created February 15, 2018 21:18
Show Gist options
  • Select an option

  • Save glutengo/ac7609c0feda30f78d4c4da13e20bfa8 to your computer and use it in GitHub Desktop.

Select an option

Save glutengo/ac7609c0feda30f78d4c4da13e20bfa8 to your computer and use it in GitHub Desktop.
import { MglTimelineModule } from '../timeline/timeline.module';
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { AppComponent } from './app.component';
@NgModule({
declarations: [
AppComponent
],
imports: [
BrowserModule,
BrowserAnimationsModule,
MglTimelineModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment