Skip to content

Instantly share code, notes, and snippets.

@teyfix
Last active June 23, 2021 05:32
Show Gist options
  • Save teyfix/56c6bd27ab4844c6d631b3160eab3484 to your computer and use it in GitHub Desktop.
Save teyfix/56c6bd27ab4844c6d631b3160eab3484 to your computer and use it in GitHub Desktop.
react - hello world
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