Created
May 6, 2022 17:44
-
-
Save anonymoustafa/31a7d57438b1467328017c5f91c068d7 to your computer and use it in GitHub Desktop.
simplest-react-index.js files ever
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react'; | |
import ReactDOM from 'react-dom/client'; | |
const root = ReactDOM.createRoot(document.getElementById("root")); | |
const element = <h1> Hello, world </h1>; | |
root.render(element); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment