We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
ReactDOM.render is no longer supported in React 18. The examples need to be updated to fix that.
The text was updated successfully, but these errors were encountered:
The examples use the old syntaxt:
const rootElement = document.getElementById('react-root'); ReactDOM.render(<App />, rootElement);
We probably need to update it for this instead?
import ReactDOM from 'react-dom/client'; const root = ReactDOM.createRoot(document.getElementById('react-root')); root.render(<Fullpage />);
Would that be enough @jason-warner , @AbobkerElaghel, @ankitsinghaniyaz, @cmswalker?
Sorry, something went wrong.
-Fixed: ReactDOM.render is no longer supported in React 18 #441
b77f0b0
- Updated docs for React > 18 #441
abba578
Alright! I think it is enough :) But if you have any other suggestions I'll be happy to add them too!
Merged into 0.1.46! 🥳
No branches or pull requests
Description
ReactDOM.render is no longer supported in React 18.
The examples need to be updated to fix that.
The text was updated successfully, but these errors were encountered: