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