Last active
November 2, 2017 18:22
-
-
Save molcik/d8acd4b2bafc5d2206685456cb2a0f98 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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