1
ReactAdvanced#ssr
CSR ships JavaScript that builds the page in the browser, so the first paint is later and crawlers see an empty shell. SSR renders HTML on the server for a fast first paint and better SEO, then hydrates it.
// SSR route returns full HTML for /courses // CSR route returns <div id="root"></div> plus a JS bundle