Skip to content

Instantly share code, notes, and snippets.

@ZackDeRose
Created July 18, 2018 03:22
Show Gist options
  • Save ZackDeRose/0caee7e80479893fe32bf32483d92f5e to your computer and use it in GitHub Desktop.
Save ZackDeRose/0caee7e80479893fe32bf32483d92f5e to your computer and use it in GitHub Desktop.
App module for ng-bootstrap for "Angular CDK Tables"
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { AppComponent } from './app.component';
import { TableComponent } from './table/table.component';
import {CdkTableModule} from '@angular/cdk/table';
import {NgbModule} from '@ng-bootstrap/ng-bootstrap';
@NgModule({
declarations: [
AppComponent,
TableComponent
],
imports: [
BrowserModule,
CdkTableModule,
NgbModule.forRoot()
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment