An reactive form doesn't have to be a form. (?)🤯 This still works. (I think)...

@mistersql

An reactive form doesn't have to be a form. (?)🤯

This still works. (I think)
```
<div [formGroup]="form">
<input
type="text"
placeholder="First Name"
class="border-1 border"
formControlName="firstName"
/>
</div>
```

Self-replies

ok, so far the difference is the "onsubmit" event- that doesn't work with a div-as-form. Also, onsubmit refreshes the whole page. click doesn't refresh the page.