Skip to content

Instantly share code, notes, and snippets.

@santoshyadavdev
Created March 24, 2020 18:37
Show Gist options
  • Save santoshyadavdev/046cca608a4a2fbded3972ad482fa3b5 to your computer and use it in GitHub Desktop.
Save santoshyadavdev/046cca608a4a2fbded3972ad482fa3b5 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';
@NgModule({
declarations: [
AppComponent
],
imports: [
BrowserModule,
AppRoutingModule,
BrowserAnimationsModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment