From f98f7cfa21340a0187c9db2106757a3f6a3bae04 Mon Sep 17 00:00:00 2001 From: Chris Veilleux Date: Thu, 28 Feb 2019 22:09:43 -0600 Subject: [PATCH] removed account retrieval logic --- projects/account/src/app/app.component.html | 9 +-------- projects/account/src/app/app.component.ts | 13 +++++++++---- projects/account/src/app/app.service.ts | 0 3 files changed, 10 insertions(+), 12 deletions(-) create mode 100644 projects/account/src/app/app.service.ts diff --git a/projects/account/src/app/app.component.html b/projects/account/src/app/app.component.html index 0a0c79f..3af36b6 100644 --- a/projects/account/src/app/app.component.html +++ b/projects/account/src/app/app.component.html @@ -1,11 +1,4 @@ - - +
diff --git a/projects/account/src/app/app.component.ts b/projects/account/src/app/app.component.ts index 84e5aa2..a391f30 100644 --- a/projects/account/src/app/app.component.ts +++ b/projects/account/src/app/app.component.ts @@ -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() { + } } diff --git a/projects/account/src/app/app.service.ts b/projects/account/src/app/app.service.ts new file mode 100644 index 0000000..e69de29