If you share a big box of toys using React Context, and a small toy part only needs one specific toy from the box, what special trick can you do so that the small toy part only changes when *its specific toy* changes, and not when any other toy in the big box changes?
When you share a big box of toys using React Context, the entire box is treated as a single JavaScript object. If the value of *any* toy (property) within that big box object changes, React perceives the *entir....