Created
August 25, 2021 11:09
-
-
Save Hydrock/7a66af1f6f1192b8c67a672a5774d0a0 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Old | |
ReactDOM.hydrate(<App />, container); | |
// New | |
const root = ReactDOM.createRoot(container, { hydrate: true }); | |
root.render(<App />); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment