A Pen by Meidika Wardana on CodePen.
Last active
September 9, 2019 00:43
-
-
Save meidikawardana/1ef8b6bd314760c9b8cb467293469ebb to your computer and use it in GitHub Desktop.
Simple ReactJS code
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
<div id="app"></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
function Person(props){ | |
return ( | |
<div className="person"> | |
<h1>{props.name}</h1> | |
<p>Your Age: {props.age}</p> | |
</div> | |
); | |
} | |
var app = ( | |
<div> | |
<Person name="Dika" age="31" /> | |
<Person name="Tari" age="32" /> | |
</div> | |
); | |
ReactDOM.render(app, document.querySelector('#app')); |
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
<script src="https://cdnjs.cloudflare.com/ajax/libs/react/16.9.0/umd/react.production.min.js"></script> | |
<script src="https://cdnjs.cloudflare.com/ajax/libs/react-dom/16.8.6/umd/react-dom.production.min.js"></script> |
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
.person { | |
display: inline-block; | |
margin: 10px; | |
border: 1px solid #eee; | |
box-shadow: 0 2px 2px #ccc; | |
width: 200px; | |
padding: 20px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment