Skip to content

Instantly share code, notes, and snippets.

@adevil5
adevil5 / 01.html
Created February 25, 2022 14:49 — forked from jhades/01.html
Angular Custom Form Controls: Complete Guide - https://blog.angular-university.io/angular-custom-form-controls
<div [formGroup]="form">
<input placeholder="Course title" formControlName="title">
<input type="checkbox" placeholder="Free course" formControlName="free">
<textarea placeholder="Description" formControlName="longDescription">
</textarea>