Created
October 2, 2020 09:12
-
-
Save sverhoeven/8bf85082f94b87a7a2726f0fd94eca71 to your computer and use it in GitHub Desktop.
run-cpp-on-web: react
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
function Heading() { | |
const title = 'Root finding web application'; | |
return <h1>{title}</h1> | |
} | |
ReactDOM.render( | |
<Heading/>, | |
document.getElementById('container') | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment