organization.component.ts
295 Bytes
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'moya-organization',
templateUrl: './organization.component.html',
styleUrls: ['./organization.component.scss']
})
export class OrganizationComponent implements OnInit {
constructor() { }
ngOnInit() {
}
}