Skip to content

Instantly share code, notes, and snippets.

@nicobytes
Created August 9, 2017 09:20
Show Gist options
  • Select an option

  • Save nicobytes/4807a44d9ee14dd4c760e586991002be to your computer and use it in GitHub Desktop.

Select an option

Save nicobytes/4807a44d9ee14dd4c760e586991002be to your computer and use it in GitHub Desktop.
inputs
//component ts
@Component({
selector: 'your-component',
templateUrl: 'your-component.html',
})
export class YourComponent {
@Input() photo: string;
constructor(
) {
}
}
//component html
<img [src]="photo" />
//page html
<your-component photo="photoUrl"></your-component>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment