Skip to content

Instantly share code, notes, and snippets.

@Joooohee
Last active February 16, 2020 16:40
Show Gist options
  • Save Joooohee/a92f46dc73b4b66e50512c20138f35c5 to your computer and use it in GitHub Desktop.
Save Joooohee/a92f46dc73b4b66e50512c20138f35c5 to your computer and use it in GitHub Desktop.
react-gugudan
<html>
<head>
<meta charset="UTF-8" />
<script src="https://unpkg.com/react@16/umd/react.development.js"></script>
<script src="https://unpkg.com/react-dom@16/umd/react-dom.development.js"></script>
<script src="https://unpkg.com/babel-standalone@6/babel.min.js"></script>
</head>
<body>
<div id="root"></div>
<script type="text/babel">
class GuGuDan extends React.Component {
constructor(props) {
super(props);
this.state = {
first: Math.ceil(Math.random() * 9),
second: Math.ceil(Math.random() * 9),
value: "",
result: ""
};
}
onSubmit = e => {
e.preventDefault();
if (
parseInt(this.state.value) ===
this.state.first * this.state.second
) {
this.setState({
result: this.state.value + "정답",
first: Math.ceil(Math.random() * 9),
second: Math.ceil(Math.random() * 9),
value: ""
});
} else {
this.setState({
result: "땡",
value: ""
});
}
};
onChange = e => {
this.setState({ value: e.target.value });
};
render() {
return (
<div>
<div>
{this.state.first} 곱하기{this.state.second} 는?
</div>
<form onSubmit={this.onSubmit}>
<input
type="number"
value={this.state.value}
onChange={this.onChange}
/>
<button>입력!</button>
</form>
<div>{this.state.result}</div>
</div>
);
}
}
</script>
<script type="text/babel">
ReactDOM.render(<GuGuDan />, document.querySelector("#root"));
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment