Skip to content

Instantly share code, notes, and snippets.

@amandeepmittal
Created August 9, 2018 06:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save amandeepmittal/bf6af62ae77a27b829fd3ca114f55460 to your computer and use it in GitHub Desktop.
Save amandeepmittal/bf6af62ae77a27b829fd3ca114f55460 to your computer and use it in GitHub Desktop.
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { Ng2SmartTableModule } from 'ng2-smart-table'; // add
import { AppComponent } from './app.component';
@NgModule({
declarations: [AppComponent],
imports: [
BrowserModule,
Ng2SmartTableModule // add
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment