DEV Community

Discussion on: Getting started with state management using useReducer and Context

Collapse
 
anderspk profile image
anderspk

Nice article!
Just a question though, because in most tutorials I see using context, the app is so small that the direct children of the entire app use context. I was wondering, in a larger app, should the Provider always be at the top in app.js, or only in the parent of the children that require the state?

Collapse
 
emma profile image
Emma Goto 🍙

Good question! The context doesn't need to be at the top of the app, you can put it anywhere where it's needed.