Skip to content

Instantly share code, notes, and snippets.

@ZackDeRose
Last active July 16, 2018 23:43
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/a95ac0a5adfd2fadc9e03f01d9f6ed4a to your computer and use it in GitHub Desktop.
Save ZackDeRose/a95ac0a5adfd2fadc9e03f01d9f6ed4a to your computer and use it in GitHub Desktop.
<table cdk-table [dataSource]="tableDataSource$">
<!-- Hero Name Column -->
<ng-container cdkColumnDef="name">
<th cdk-header-cell *cdkHeaderCellDef> Hero Name </th>
<td cdk-cell *cdkCellDef="let row"> {{row.name}} </td>
<!-- no footer -->
</ng-container>
<!-- ... -->
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment