Outputs a welcome message to your user(s)
Add the package to your project with:
yarn add react-welcome-user
Import the component in your project. The <Welcome />
component with no props will return:
<h1>Hello User!<h1>
The component also accepts a user via props. For example <Welcome user="Matt" />
will return:
<h1>Hello Matt!</h1>