]> git.cworth.org Git - lmno.games/blobdiff - tictactoe/tictactoe.jsx
Drop the game history interface.
[lmno.games] / tictactoe / tictactoe.jsx
index 654d55ee17c45da10c83ab4ecf1b4ed276b719e7..934faa8e0cc63e37adc530c22beea642f7782fb7 100644 (file)
@@ -137,17 +137,6 @@ class Game extends React.Component {
     const current = history[this.state.stepNumber];
     const winner = calculateWinner(current.squares);
 
     const current = history[this.state.stepNumber];
     const winner = calculateWinner(current.squares);
 
-    const moves = history.map((step, move) => {
-      const desc = move ?
-        'Go to move #' + move :
-        'Go to game start';
-      return (
-        <li key={move}>
-          <button onClick={() => this.jumpTo(move)}>{desc}</button>
-        </li>
-      );
-    });
-
     let status;
     if (winner) {
       status = "Winner: " + winner;
     let status;
     if (winner) {
       status = "Winner: " + winner;
@@ -165,7 +154,6 @@ class Game extends React.Component {
         </div>
         <div className="game-info">
           <div>{status}</div>
         </div>
         <div className="game-info">
           <div>{status}</div>
-          <ol>{moves}</ol>
         </div>
       </div>
     );
         </div>
       </div>
     );