Skip to content

Instantly share code, notes, and snippets.

@ryu1-1uyr
Created May 8, 2018 00:43
Show Gist options
  • Save ryu1-1uyr/225f0c52c877720283281bb058ca88a9 to your computer and use it in GitHub Desktop.
Save ryu1-1uyr/225f0c52c877720283281bb058ca88a9 to your computer and use it in GitHub Desktop.
じゃんけん
import React, { Component } from 'react';
import logo from './logo.svg';
import './App.css';
class App extends Component {
render() {
return (
<div className="App">
<header className="App-header">
<img src={logo} className="App-logo" alt="logo" />
<h1 className="App-title">Welcome to React</h1>
</header>
<p className="App-intro">
To get started, edit <code>src/App.js</code> and save to reload.
</p>
</div>
);
}
}
export default App;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment