Prefacing this with a note that I am new to front end development. Please excuse any terminology misuse. I have some general questions about the docs. For context using react.
Take this example from the quickstart docs:
https://tanstack.com/form/latest/docs/framework/react/quick-start
...
Apparently, canSubmit is true initially even if e.g. mandatory fields are empty, because no field validation happened yet.
I tried using defaultState like this, but it did not work:
```typescript...