Built with blockbuilder.org
Created
July 4, 2019 10:45
-
-
Save aendra-rininsland/b59eb8c6538999277818dd7a560f1524 to your computer and use it in GitHub Desktop.
fresh block
This file contains 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
license: mit |
This file contains 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
<!DOCTYPE html> | |
<head> | |
<meta charset="utf-8"> | |
<script src="https://unpkg.com/@babel/standalone/babel.min.js"></script> | |
<script | |
src="https://unpkg.com/react@16/umd/react.production.min.js" | |
crossorigin></script> | |
<script | |
src="https://unpkg.com/react-dom@16/umd/react-dom.production.min.js" | |
crossorigin></script> | |
</head> | |
<body> | |
<div id="app"></div> | |
<script type="text/babel"> | |
const MyComponent = (props) => (<div>Hi {props.name}!!</div>); | |
const App = (props) => (<div><h1>My App</h1><MyComponent name={props.somebody} /></div>) | |
ReactDOM.render( | |
<App somebody="Martin" />, | |
document.getElementById('app') | |
); | |
</script> | |
</body> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment