DEV Community

Discussion on: The React Context hell

Collapse
 
pengeszikra profile image
Peter Vivo

Good point to alert context hell!
I simple skip use context, instead works with simple useReducer, and pass down actions and state in props. That way give more simple component, because my component don't have outer dependency - expect props, so easy join together in quite complex app.