Learn React 18 Beta - 1
learned from https://egghead.io/courses/migrate-a-client-side-application-to-react-18-beta-9379f0d1
Install #
npm install react@rc react-dom@rc
The new way to create Dom
const root = document.getElementById("root")
ReactDOM.createRoot(root).render(<A...
haorong.hashnode.dev1 min read