DEV Community

Discussion on: How to use React Context

Collapse
 
sqlrob profile image
Robert Myers

When creating the provider, why the additional level of indirection on setTheme?

Collapse
 
muhammadev profile image
muhammadev

If you mean the "updateTheme" method, it's meant to be an example of a method that can do more than just updating the theme state. For example, it could be a method that triggers a fetch request, in which updating the state is not a direct step.