Skip to content

Instantly share code, notes, and snippets.

@scottcreynolds
Created March 28, 2019 01:51
Show Gist options
  • Save scottcreynolds/0bf8b651914d4c54b0465c7752b02502 to your computer and use it in GitHub Desktop.
Save scottcreynolds/0bf8b651914d4c54b0465c7752b02502 to your computer and use it in GitHub Desktop.
Hello React
ReactDOM.render(
<h1>Hello, world!</h1>,
document.getElementById('root')
);
<div id="root"></div>
var app = new Vue({
el: '#app',
data: {
message: 'Hello Vue!'
}
})
<div id="app">
{{ message }}
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment