Is React and ReactDOM libraries reside in running html page(single page) at browser?
Are other js libraries (installed in npm_modules) are also reside in running HTML page at browser ?
Or all above libraries and actual code (programmers) converted to single/multiple JS files and each time when SPA page loads it has all these files but in converted(bundled) manner?
My understanding is React is client side library that means it is present at html page while page is running in browser.
Apology for very basic questions but these questions in my mind many days and couldn't find satisfactory post or I missed.