Created
March 28, 2019 01:51
-
-
Save scottcreynolds/0bf8b651914d4c54b0465c7752b02502 to your computer and use it in GitHub Desktop.
Hello 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
ReactDOM.render( | |
<h1>Hello, world!</h1>, | |
document.getElementById('root') | |
); | |
<div id="root"></div> |
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
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