Local state belongs to a single component (or a small subtree) and isn't needed elsewhere. Global state is shared across many, often distant, components throughout the app.
Local state — scoped to one component
() {
[query, setQuery] = ();
;
}
