React Patterns
React patterns that I find useful / worth checking out
Order of file
- State
- Derived State
- Hook Calls
- Functions
- JSX
React Form Pattern
from Cory House
- Store as “touched”
touched- What fields have been touched
- Stores as “status”
submitted- Has the form been submittedisSubmitting- Is the form submission in progress
- Derive the rest
isValid- Validate based on validated form valueserrors- What are the errors for each field?dirty- Has any field been touched?