Created
July 16, 2021 18:03
-
-
Save cursorial/593c51d18da72935e0cd6defb8ce0f18 to your computer and use it in GitHub Desktop.
This file contains 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' | |
const App = () => { | |
return ( | |
<div> | |
Hello, React World! | |
</div> | |
) | |
} | |
ReactDOM.render(<App />, document.getElementById('root')) | |
export default App |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment