DEV Community

Discussion on: Build address search component in React

Collapse
 
victorocna profile image
Victor Ocnarescu

Cool article! I would definitely use React state instead of context. Prop drilling is not so bad (and potentially non existent) for well structured components.

The only times I use context is for theme options, language options or any app wide configurations, just like the React docs mention. Cheers!