DEV Community

Discussion on: React Tips & Patterns

Collapse
 
mychi_darko profile image
Michael Darko

If I get you right, you mean a different container for every segment, so you don't mix up different contexts, correct? I do that for really big components or when I need to fetch stuff separately or just make a reusable block of code for multiple pages. Otherwise, I just stick to something similar to what I did above.

Collapse
 
briang123 profile image
Brian Gaines

Cool....Yup. Separation of concerns and isolating functionality to its own container that you can just pass around and use wherever.