Skip to content

Instantly share code, notes, and snippets.

@Hydrock
Created August 25, 2021 11:09
Show Gist options
  • Save Hydrock/7a66af1f6f1192b8c67a672a5774d0a0 to your computer and use it in GitHub Desktop.
Save Hydrock/7a66af1f6f1192b8c67a672a5774d0a0 to your computer and use it in GitHub Desktop.
// 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