The atomic state model (Jotai, Recoil) builds global state from many tiny, independent units called atoms, composed bottom-up — rather than one large top-down store (Redux) or a monolithic context. Components subscribe to individual atoms and re-render only when those change.
Atoms — the smallest units of state
{ atom, useAtom } ;
countAtom = ();
nameAtom = ();
