Mercurial > hg > ugly-duckling
view 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 source
/** * 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 { }