Navigate With State Via @reach/router
const onSubmit = ({ data }) => {
/* submit logic ... */
navigate(nextPath, { state: { data }});
}const NextComponent = ({ location }) => {
const { data } = location.state;
return (
/* ... */
)
}Last updated