skip to content
Alvin Lucillo

Using formGroup with div

/ 1 min read

If you encounter this error below, you just missed importing ReactiveFormsModule into your component. NG8002: Can't bind to 'formGroup' since it isn't a known property of 'div'.

Importing the dependency ensures you can bind the form with `div.

<div [formGroup]="form"></div>
@Component({
  selector: 'app-test',
  imports: [ReactiveFormsModule],
  templateUrl: './test.component.html',
  styleUrl: './test.component.css',
})