Skip to content

Instantly share code, notes, and snippets.

@h4091
Last active December 28, 2018 15:01
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/b994e93d201903dd7a3c192336f7b236 to your computer and use it in GitHub Desktop.
Save h4091/b994e93d201903dd7a3c192336f7b236 to your computer and use it in GitHub Desktop.
Test14
<div id="root"></div>
function WarningBanner(props) {
return !props.warn ? null : (
<div className="warning">
Warning!
</div>
);
}
class Page extends React.Component {
constructor(props) {
super(props);
this.handleToggleClick = this.handleToggleClick.bind(this);
this.state = {
showWarning: false
};
}
handleToggleClick() {
this.setState(state => ({
showWarning : !state.showWarning
}));
}
render() {
return (
<div>
<WarningBanner warn={this.state.showWarning} />
<button onClick={this.handleToggleClick}>
{this.state.showWarning ? "Hide" : "Show"}
</button>
</div>
);
}
}
ReactDOM.render(
<Page />,
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>
* {
font-family: sans-serif;
margin: 0;
}
button {
height: 40px;
width: 200px;
}
.warning {
background-color: red;
text-align: center;
width: 100%;
padding: 10px;
font-size: 14pt;
color: white;
}

Test14

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

Conditional rendering

A Pen by 你银子掉了 on CodePen.

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