On this Day I Learned...
I learned about some basic items in React.JS
This day I learned how return statements work in react.
function Welcome(props) {
return <h1>Welcome back!</h1>;
}
function GuestGreeting(props) {
return <h1>Please sign up.</h1>;
}
For the above exa...
leotriescode.com2 min read