Skip to content

Instantly share code, notes, and snippets.

@h4091
Last active December 28, 2018 14:11
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save h4091/fc2b81b90983c293f761e9436f644939 to your computer and use it in GitHub Desktop.
Save h4091/fc2b81b90983c293f761e9436f644939 to your computer and use it in GitHub Desktop.
Test2
<div id="root">
<!-- This div's content will be managed by React. -->
</div>
function formatName(user) {
return user.firstName + ' ' + user.lastName;
}
function getGreeting(user) {
if (user) {
return <h1>Hello,{formatName(user)}!</h1>;
}
return <h1>Hello, Stranger.</h1>;
}
const user = {
firstName : 'Harper',
lastName : 'Perez'
};
const element = (
<div>
{getGreeting(user)}
{getGreeting()}
</div>
);
ReactDOM.render(
element,
document.getElementById('root')
);
<script src="https://unpkg.com/react/umd/react.development.js"></script>
<script src="https://unpkg.com/react-dom/umd/react-dom.development.js"></script>

Test2

Learn the fundamentals of React, including simple and class components, state, props, and submitting form data.

A Pen by 你银子掉了 on CodePen.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment