Mercurial > hg > ugly-duckling
diff src/app/visualisations/curve/curve.component.ts @ 359:c8a585de46ac
Add skeleton for a curve component.
author | Lucas Thompson <dev@lucas.im> |
---|---|
date | Tue, 30 May 2017 15:06:11 +0100 |
parents | |
children | f122bb02c428 |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/src/app/visualisations/curve/curve.component.ts Tue May 30 15:06:11 2017 +0100 @@ -0,0 +1,16 @@ +/** + * Created by lucas on 30/05/2017. + */ +import {WavesComponent} from "../waves-base.component"; +import {ChangeDetectionStrategy, Component} from "@angular/core"; + +@Component({ + selector: 'ugly-curve', + // templateUrl: '../waves-template.html', + template: `<div #track class="track"><span>Curve</span></div>`, + styleUrls: ['../waves-template.css'], + changeDetection: ChangeDetectionStrategy.OnPush +}) +export class CurveComponent extends WavesComponent { + +}