react-to-react-dom
Move DOM APIs from react to react-dom and react-dom/server.
Usage
bash
Development
bash
Explore community-led codemods to migrate, optimize, and transform your codebase.
Build your own codemod and share it with the community.
Move DOM APIs from react to react-dom
npx codemod @react-new/react-to-react-dom
Move DOM APIs from react to react-dom and react-dom/server.
bash
bash
This is one example from the codemod's test cases. The codemod may handle many more cases.
Build your own codemod and share it with the community.
1 var React;
2
3 React = require('react');
4 let { render } = React;
5
6 render(<div />);
7