Skip to content

Instantly share code, notes, and snippets.

@alexkuttig
Created September 26, 2022 09:45
Show Gist options
  • Save alexkuttig/9f219ece927fb54272844816418109fb to your computer and use it in GitHub Desktop.
Save alexkuttig/9f219ece927fb54272844816418109fb to your computer and use it in GitHub Desktop.
Chapter 1 - 5
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