Minor theme changes

Moving closer to spawning component dynamically for the purpose of the dashboard and trading
This commit is contained in:
GloriousCode
2017-12-07 20:56:19 +11:00
parent 5e25072a13
commit 0b0c5c0a33
18 changed files with 145 additions and 14 deletions

View File

@@ -1,3 +1,16 @@
<p>
buy-sell works!
</p>
<mat-tab-group>
<mat-tab>
<ng-template mat-tab-label>
The <em>best</em> pasta
</ng-template>
<h1>Best pasta restaurants</h1>
<p>...</p>
</mat-tab>
<mat-tab>
<ng-template mat-tab-label>
<mat-icon>thumb_down</mat-icon> The worst sushi
</ng-template>
<h1>Terrible sushi restaurants</h1>
<p>...</p>
</mat-tab>
</mat-tab-group>

View File

@@ -1,4 +1,4 @@
import { Component, OnInit } from '@angular/core';
import { Component, OnInit,Directive, ViewContainerRef } from '@angular/core';
@Component({
selector: 'app-buy-sell',
@@ -7,7 +7,7 @@ import { Component, OnInit } from '@angular/core';
})
export class BuySellComponent implements OnInit {
constructor() { }
constructor(public viewContainerRef: ViewContainerRef) { }
ngOnInit() {
}