Skip to content

Latest commit

 

History

History
23 lines (17 loc) · 728 Bytes

readme.md

File metadata and controls

23 lines (17 loc) · 728 Bytes

React Tutorial Follow Along

Just following along with the official tutorial located here: http://facebook.github.io/react/docs/tutorial.html

and here: https://github.com/reactjs/react-tutorial/

Run the app

  1. Clone this repo
  2. cd into this repo
  3. Type node server.js
  4. Visit http://localhost:3000

Observations

I thought at first that it wouldn't be much of an issue to use regular JS syntax instead of JSX syntax.

Unfortunately, most of the React documentation is in JSX syntax.

I used the online JSX compiler to understand the JSX syntax http://facebook.github.io/react/jsx-compiler.html

In hindsight, just use the JSX syntax if like me, you're learning React.