Everything is a component.
- One of the first things you’ll notice in React is that you’ll be writing markup in JS, not in HTML.
- Do not use class. Instead, use className. It’s because JSX gets translated to JS, and class is a keyword in the newest version of JS.
- If you use
<br>
instead of<br/>
, it won’t work. Make sure to put/
on self-closing tags.
- Setup static html mockup
- Integrate into JSX
http://reactfordesigners.com/labs/reactjs-introduction-for-people-who-know-just-enough-jquery-to-get-by/