removed account retrieval logic
parent
27f630c822
commit
f98f7cfa21
|
@ -1,11 +1,4 @@
|
|||
<globalnav-sidenav
|
||||
[mycroftUrls]="environment.mycroftUrls"
|
||||
[user$]="user$"
|
||||
>
|
||||
<!--
|
||||
Inject the marketplace app into the <mat-sidenav-content> component
|
||||
of the global navigation menu library.
|
||||
-->
|
||||
<globalnav-sidenav [mycroftUrls]="environment.mycroftUrls">
|
||||
<div appBody id="account-body">
|
||||
<router-outlet></router-outlet>
|
||||
</div>
|
||||
|
|
|
@ -1,14 +1,19 @@
|
|||
import { Component } from '@angular/core';
|
||||
import { Component, OnInit } from '@angular/core';
|
||||
|
||||
import { environment } from '../environments/environment';
|
||||
|
||||
|
||||
@Component({
|
||||
selector: 'account-root',
|
||||
templateUrl: './app.component.html',
|
||||
styleUrls: ['./app.component.scss']
|
||||
})
|
||||
export class AppComponent {
|
||||
export class AppComponent implements OnInit {
|
||||
public environment = environment;
|
||||
title = 'account';
|
||||
title = 'Account';
|
||||
|
||||
constructor() {
|
||||
}
|
||||
|
||||
ngOnInit() {
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue