Skip to content

Instantly share code, notes, and snippets.

@afirdousi
Last active June 26, 2017 21:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save afirdousi/e5ef3e14086985595ff1852ff6558482 to your computer and use it in GitHub Desktop.
Save afirdousi/e5ef3e14086985595ff1852ff6558482 to your computer and use it in GitHub Desktop.
@Component({
selector: 'my-custom-input',
templateUrl: 'src/my-custom-input.component.html',
styleUrls:['src/my-custom-input.component.css'],
encapsulation: ViewEncapsulation.Emulated
})
export class MyCustomInput {
@Input() label;
constructor() {
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment