Absolutely go for state management tools (although Context is also pretty dang good these days) if your form grows complex or relies on other parts of state (like to autofill data from a signed in user). However, if a form is simple, and only sends a post and then redirects, it can often be easier to keep it out of reducer land and maintain its state on its own.