Some questions about react server-side rendering are a little unclear.

server-side rendering is: the server fills the data directly, generates the html and returns it to the browser
. What about the understanding of
? What happens after the browser renders the html and loads the js? Will the react declaration cycle be executed again?
or react has been taken care of, and componentWillmound? will not be repeated

Feb.11,2022

If you call ReactDOM.hydrate () on a node that already has this
server-rendered markup, React will preserve it and only attach event
handlers, allowing you to have a very performant first-load
experience. < sup > [1] < / sup >

[1] https://reactjs.org/docs/reac.

Menu