Created
September 26, 2022 09:42
-
-
Save alexkuttig/c76b7a64da12327ad6d6f9f951d4414c to your computer and use it in GitHub Desktop.
Chapter 1 - 2
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 App() { | |
const userName = 'Some Name'; | |
return ( | |
<div> | |
<p>Hello {userName}!</p> | |
</div> | |
) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment