You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
import{createRoot}from'react-dom/client';// Clear the existing HTML contentdocument.body.innerHTML='<div id="app"></div>';// Render your React component insteadconstroot=createRoot(document.getElementById('app'));root.render(<h1>Hello, world</h1>);
Core or SDK?
Platform/SDK
Which part? Which one?
@sentry/react
Description
@AbhiPrasad since React 18, there's a updated method of importing react.
I took this from the official react website
Originally posted by @Jesse-Box in #6508 (comment)
Suggested Solution
Change everywhere we need to change
The text was updated successfully, but these errors were encountered: