organization.component.ts 499 Bytes
import { Component, OnInit } from '@angular/core';
import {  EventListComponent} from './event-list/event-list.component';

@Component({
  selector: 'moya-organization',
  templateUrl: './organization.component.html',
  styleUrls: ['./organization.component.scss']
})
export class OrganizationComponent implements OnInit {

  title = 'Moay';
  public currentOrganization: string;

  constructor() { }

  ngOnInit() {
  }

  onOrganizationChange(event) {
    this.currentOrganization = event;
  }

}