);
}
export default App;
/*
Notes:
- The exact same useToggle hook backs two completely unrelated
pieces of UI — neither component knows or cares that the other
one also uses it.
- Each call to useToggle() creates its own independent state; the
two booleans never interfere with each other.
*/