reactjs / react-codemod

React codemod scripts
MIT License
4.2k stars 288 forks source link

Add support for React 18 features #307

Open rao123dk opened 2 years ago

rao123dk commented 2 years ago

Possible Add

// After
import { createRoot } from 'react-dom/client';
const container = document.getElementById('app');
const root = createRoot(container);
root.render(<App tab="home" />);

Note:- Its is useful for someone who is following micro-frontend architecture.