aboutsummaryrefslogtreecommitdiffstats
path: root/src/angular/tiles/tile.component.ts
blob: 63792942f57e5150241020d71a32e7aa8c421fe6 (plain)
1
2
3
4
5
6
7
8
9
10
11
import { Component, HostBinding } from '@angular/core';
import { template } from "./tile.component.html";

@Component({
    selector: "sdc-tile",
    template: template
})

export class TileComponent {
    @HostBinding('class') classes = 'sdc-tile';
}