
Software engineer by day and designer by night
7 Followers
This is a very good advice. I never really use global state until I really don’t have a choice. My major reason for using a global state management solution is when I need to share data across different pages, even for cases like this my goto is just useContext + useState/useReducer
fast-forward to when I discovered using Url states I’ve always used it unless data being passed across is like a complex object or something. Curious to get your thoughts on this