Step 5: Do not go for Redux just because is popular. In 2021 we have way better options for server data (which is very different than UI state). Use react-query or swr for remote data. It's way simpler and better than Redux.
For UI state, local setState + context (abstracted inside a custom hook) is usually enough for most apps.
We're a place where coders share, stay up-to-date and grow their careers.
Step 5: Do not go for Redux just because is popular. In 2021 we have way better options for server data (which is very different than UI state). Use react-query or swr for remote data. It's way simpler and better than Redux.
For UI state, local setState + context (abstracted inside a custom hook) is usually enough for most apps.