This repository has been archived on 2023-08-16. You can view files and clone it, but cannot push or open issues or pull requests.
FoodLoop-Web/src/app/shared/org-result.component.ts

10 lines
201 B
TypeScript
Raw Normal View History

2017-08-29 17:15:47 +00:00
import { Component, Input } from '@angular/core';
@Component({
selector: 'org-result',
template:'banana {{ organisation }}',
})
export class OrgResultComponent {
@Input() organisation: any;
}