Skip to content

Instantly share code, notes, and snippets.

@ahojukka5
Created December 31, 2020 05:52
Show Gist options
  • Save ahojukka5/1c5898aeb542c3ce84837937f50b6fb6 to your computer and use it in GitHub Desktop.
Save ahojukka5/1c5898aeb542c3ce84837937f50b6fb6 to your computer and use it in GitHub Desktop.
import React from 'react';
import ReactDOM from 'react-dom';
function App() {
return <div className="App">Hello, world!</div>;
}
ReactDOM.render(
<React.StrictMode>
<App />
</React.StrictMode>,
document.getElementById('root'),
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment