Skip to content

Instantly share code, notes, and snippets.

@shhdharmen
Created January 29, 2019 13:01
Show Gist options
  • Save shhdharmen/081001ad8e84d31e3bac89fb3f5581aa to your computer and use it in GitHub Desktop.
Save shhdharmen/081001ad8e84d31e3bac89fb3f5581aa to your computer and use it in GitHub Desktop.
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { AppRoutingModule } from './app-routing.module';
import { AppComponent } from './app.component';
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
import { SharedModule } from './shared/shared.module';
@NgModule({
declarations: [
AppComponent
],
imports: [
BrowserModule,
AppRoutingModule,
BrowserAnimationsModule,
SharedModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment