Created
July 2, 2017 10:00
-
-
Save Armenvardanyan95/57d7e0a8418c5df9019378bc827d3344 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @Component({ | |
| selector: 'app-single-control-component', | |
| template: ` | |
| <div class="form-control"> | |
| <label>{{ label }}</label> | |
| <input type="text" [formControl]="control" /> | |
| </div> | |
| ` | |
| }) | |
| export class SingleControlComponent{ | |
| @Input() control: AbstractControl | |
| @Input() label: string; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment