Guest User

Untitled

a guest
Jun 24th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.54 KB | None | 0 0
  1. <form [formGroup]="componentForm">
  2. <div class="form-group row">
  3.  
  4. <!-- camel cased names split into suggested title case labels -->
  5. <label class="col-sm-3 col-form-label">Purchase Date</label>
  6.  
  7. <div class="col-sm-9">
  8. <!-- html type converted from angular type -->
  9. <input class="form-control" type="date" formControlName="purchaseDate" />
  10. </div>
  11.  
  12. <!-- generated loop for snippet for Array collections -->
  13. <div *ngFor="refurbishment in refurbishments">
  14. <label />
  15. <input />
  16. </div>
  17.  
  18. </div>
  19. </form>
Add Comment
Please, Sign In to add comment