app.component.ts
466 Bytes
import { Component } from '@angular/core';
import { AppService } from './shared/app.service';
@Component({
selector: 'moya-root',
templateUrl: './app.component.html',
styleUrls: ['./app.component.scss']
})
export class AppComponent {
title = 'Moay';
public currentOrganisation: string;
constructor(private appService: AppService) {
console.log(this.appService.get());
}
onOrganizationChange(event) {
this.currentOrganisation = event;
}
}