Trying to understand cookies better.
I assume that if a React app calls an endpoint which sets cookies, those cookies are sent back to the server on every subsequent request, automatically. That is, React doesn't have to specifically handle the "incoming" cookie in any way; and it includes it in all future requests.
Is that true? Does the browser handle all the details?