Skip to content

Instantly share code, notes, and snippets.

@sverhoeven
Created October 2, 2020 09:12
Show Gist options
  • Save sverhoeven/8bf85082f94b87a7a2726f0fd94eca71 to your computer and use it in GitHub Desktop.
Save sverhoeven/8bf85082f94b87a7a2726f0fd94eca71 to your computer and use it in GitHub Desktop.
run-cpp-on-web: react
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