Skip to content

Instantly share code, notes, and snippets.

@partharanjan
Created October 30, 2018 09:54
Show Gist options
  • Save partharanjan/e6d809420a165e105ea8772abeb3479f to your computer and use it in GitHub Desktop.
Save partharanjan/e6d809420a165e105ea8772abeb3479f to your computer and use it in GitHub Desktop.
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { AppComponent } from './app.component';
import { NgxColorSpinnerModule } from 'projects/ngx-color-spinner/src/public_api';
@NgModule({
declarations: [
AppComponent
],
imports: [
BrowserModule,
NgxColorSpinnerModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment