Created
September 26, 2022 09:45
-
-
Save alexkuttig/9f219ece927fb54272844816418109fb to your computer and use it in GitHub Desktop.
Chapter 1 - 5
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 WelcomeMessage(props) { | |
return ( | |
<div> | |
<p>Welcome {props.userName}!</p> | |
<p>It's nice to see you here!</p> | |
</div> | |
) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment