Angular - Reactive Forms
Examine the following reactive form code snippet and identify the mistake:
this.form = new FormGroup({
email: new FormControl('')
});
this.form.controls.email = new FormControl('test@example.com');