Adding Stuff for submit transaction

This commit is contained in:
piratefinn 2017-08-29 18:15:47 +01:00
parent d3c0e9ec57
commit f040a26794
8 changed files with 308 additions and 6 deletions

View file

@ -0,0 +1,10 @@
import { Component, Input } from '@angular/core';
@Component({
selector: 'org-result',
template:'banana {{ organisation }}',
})
export class OrgResultComponent {
@Input() organisation: any;
}