Skip to content

Instantly share code, notes, and snippets.

@alterx
Created November 21, 2016 19:07
Show Gist options
  • Save alterx/807eab1119725d56eecd12c22cd271f1 to your computer and use it in GitHub Desktop.
Save alterx/807eab1119725d56eecd12c22cd271f1 to your computer and use it in GitHub Desktop.
import { Component, Input } from '@angular/core';
@Component({
selector: 'my-child-component',
template: `
<p>{{ prop1 }}</p>
`,
})
export class ChildComponent {
@Input() prop1: string;
constructor() {}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment