Reading 18 - morgan-401-advanced-javascript/seattle-javascript-401n14 GitHub Wiki

Read

React Hello World Link

  • JSX- it is a syntax extension to JavaScript.
  • React elements are immutable. Once you create an element, you can’t change its children or attributes. An element is like a single frame in a movie: it represents the UI at a certain point in time.
  • Components can refer to other components in their output. This lets us use the same component abstraction for any level of detail. A button, a form, a dialog, a screen: in React apps, all those are commonly expressed as components.
  • Whether you declare a component as a function or a class, it must never modify its own props.

Introducing JSX Link

Rendering Elements Link

Skim

Sass

Link

Bookmark

Sass Meister Link

Sass Cheatsheet Link

React Cheatsheet Link

Another React Cheatsheet Link