Skip to content

Instantly share code, notes, and snippets.

@ZackDeRose
Created July 16, 2018 23:04
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 ZackDeRose/f3d0a870d00eb356ac2187772b77248b to your computer and use it in GitHub Desktop.
Save ZackDeRose/f3d0a870d00eb356ac2187772b77248b to your computer and use it in GitHub Desktop.
Angular App Module file for "Angular CDK Tables" article
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { CdkTableModule } from '@angular/cdk/table';
import { AppComponent } from './app.component';
import { TableComponent } from './table/table.component';
@NgModule({
declarations: [
AppComponent,
TableComponent
],
imports: [
BrowserModule,
CdkTableModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment