react-create-element-to-jsx
Convert React.createElement(...) calls to JSX.
Usage
bash
Explore community-led codemods to migrate, optimize, and transform your codebase.
Build your own codemod and share it with the community.
Convert React.createElement calls to JSX
Build your own codemod and share it with the community.
1 var React = require('React');
2
3 React.createElement(Foo, null, ...children);
4 React.createElement(Foo, null, firstChild, ...otherChildren);
5