Created
January 10, 2019 14:42
-
-
Save myns/31ea07f26b5070741bc443443318a18f to your computer and use it in GitHub Desktop.
Babel Örnek
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
<!DOCTYPE html> | |
<head> | |
<meta charset="utf-8"> | |
<script src= "https://unpkg.com/react@16/umd/react.production.min.js"></script> | |
<script src= "https://unpkg.com/react-dom@16/umd/react-dom.production.min.js"></script> | |
<script src= "https://unpkg.com/[email protected]/babel.min.js"></script> | |
</head> | |
<body> | |
<div id='root'> | |
</div> | |
<script type="text/babel"> | |
ReactDOM.render( | |
<div id='root'> | |
<label id='etiket1' for='kutucuk1'>Adınız</label> | |
<input id='kutucuk1' type='text'></input> | |
<button type='button'>Kaydet</button> | |
</div> | |
, | |
document.getElementById('root') | |
); | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment