import { Component, Input } from '@angular/core'; import { SearchResult } from '@yourcause/common'; import { YCModalComponent } from '@yourcause/common/modals'; @Component({ selector: 'gc-org-not-eligible-modal', templateUrl: './org-not-eligible-modal.component.html', styleUrls: ['./org-not-eligible-modal.component.scss'] }) export class OrgNotEligibleModalComponent extends YCModalComponent { @Input() selectedOrg: SearchResult; }