Adds a new component to render all enabled currency tickers. Will sort out later.

Reduces currency ticker to accept a ticker object so that it doesn't need to listen to events
This commit is contained in:
GloriousCode
2017-09-24 20:38:47 +10:00
parent 67d7409326
commit e0921a8946
9 changed files with 144 additions and 35 deletions

View File

@@ -0,0 +1,7 @@
<div style="width:1000px">
<md-grid-list cols="3" rowHeight="2:1" >
<md-grid-tile *ngFor="let ticker of tickerCards">
<app-exchange-currency-ticker [ticker]="ticker" ></app-exchange-currency-ticker>
</md-grid-tile>
</md-grid-list>
</div>