Files
gocryptotrader/web/src/app/pages/trading/trading.component.ts
GloriousCode 0b0c5c0a33 Minor theme changes
Moving closer to spawning component dynamically for the purpose of the dashboard and trading
2017-12-07 20:56:19 +11:00

16 lines
274 B
TypeScript

import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-trading',
templateUrl: './trading.component.html',
styleUrls: ['./trading.component.scss']
})
export class TradingComponent implements OnInit {
constructor() { }
ngOnInit() {
}
}