start of dashboard component with flexbox

This commit is contained in:
Jesse Lucas
2020-03-15 17:19:57 -04:00
parent ce2c6c01da
commit ad2902b3ee
10 changed files with 104 additions and 33 deletions
+2 -14
View File
@@ -1,5 +1,4 @@
import { Component, OnInit } from '@angular/core';
import { SystemConfigService } from './system-config.service';
import { Component } from '@angular/core';
@Component({
selector: 'app-root',
@@ -7,16 +6,5 @@ import { SystemConfigService } from './system-config.service';
styleUrls: ['./app.component.scss']
})
export class AppComponent {
title = 'Tech UI';
constructor(private systemConfigService: SystemConfigService) { }
ngOnInit(): void {
console.log("app component init");
this.systemConfigService.getSystemConfig().subscribe(
x => console.log('Observer got a next value: ' + x),
err => console.error('Observer got an error: ' + err),
() => console.log('Observer got a complete notification')
);
}
constructor() { }
}