Skip to content

Instantly share code, notes, and snippets.

@molcik
Last active November 2, 2017 18:22
Show Gist options
  • Save molcik/d8acd4b2bafc5d2206685456cb2a0f98 to your computer and use it in GitHub Desktop.
Save molcik/d8acd4b2bafc5d2206685456cb2a0f98 to your computer and use it in GitHub Desktop.
import {Component} from '@angular/core';
@Component({
selector: 'material-app',
templateUrl: 'app.component.html'
})
export class AppComponent {
tiles = [
{text: 'One', cols: 2, rows: 1, color: '#142A5C'},
{text: 'Two', cols: 1, rows: 1, color: '#B7A0E8'},
{text: 'Three', cols: 1, rows: 2, color: '#FF0000'},
{text: 'Four', cols: 3, rows: 1, color: '#D9EDD9'},
];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment