Skip to content

Instantly share code, notes, and snippets.

@luillyfe
Created July 11, 2020 18:13
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 luillyfe/b25ef22a2e54caa7e6c1da7adddcc89c to your computer and use it in GitHub Desktop.
Save luillyfe/b25ef22a2e54caa7e6c1da7adddcc89c to your computer and use it in GitHub Desktop.
@component in Angular with a feeling of React.
...
template: `
<mat-grid-list cols="1" rowHeight="16:1">
{{
todos.map(todo => <mat-grid-tile [id]="todo.id">{{todo.text}}</mat-grid-tile>)
}}
</mat-grid-list>
`,
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment