Last active
June 23, 2021 05:32
-
-
Save teyfix/56c6bd27ab4844c6d631b3160eab3484 to your computer and use it in GitHub Desktop.
react - hello world
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
const HelloWorld = () => ( | |
<section> | |
<h1>Merhaba dünya!</h1> | |
</section> | |
); | |
ReactDOM.render( | |
HelloWorld, | |
document.getElementById('root'), | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment