Skip to content

Instantly share code, notes, and snippets.

@cursorial
Created July 16, 2021 18:03
Show Gist options
  • Save cursorial/593c51d18da72935e0cd6defb8ce0f18 to your computer and use it in GitHub Desktop.
Save cursorial/593c51d18da72935e0cd6defb8ce0f18 to your computer and use it in GitHub Desktop.
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