Giter Site home page Giter Site logo

reactjs.org's Introduction

ReactJS.org tic-tac-toe tutorial

In this repository you can find my solutions for the tic-tac-toe tutorial files from the ReactJS website, including the suggested improvements:

  1. Display the location for each move in the format (col, row) in the move history list.
  2. Bold the currently selected item in the move list.
  3. Rewrite Board to use two loops to make the squares instead of hardcoding them.
  4. Add a toggle button that lets you sort the moves in either ascending or descending order.
  5. When someone wins, highlight the three squares that caused the win.
  6. When no one wins, display a message about the result being a draw.

Additionally, as a personal challenge, I prevented jumping back and forth in history. For example, when jumping from step 4 to 3, you can't go back to step 4. Only the buttons for steps 1-3 are enabled. You can easily disable this feature by changing line 31 of src/index.js:

// Original line 31 code
const disabled = stepIndex > this.props.stepNumber;
// Disable feature by changing the line above to the following
const disabled = false;

Setup

In the project directory, you can run: npm start. This will run the app in the development mode.
Open http://localhost:3000 to view it in the browser.

The page will reload if you make edits. You will also see any lint errors in the console.

Other information

This project was bootstrapped with Create React App. I changed the README file created create-react-app for overview reasons, but you can find the the most recent version of the original README here.

reactjs.org's People

Contributors

dependabot[bot] avatar mzilverberg avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.