Skip to the content.

Thinking in React

1. Break The UI Into A Component Hierarchy

2. Build A Static Version in React

3. Identify The Minimal (but complete) Representation Of UI State

How would you break a mock into a component heirarchy?

What is the single responsibility principle and how does it apply to components?

What does it mean to build a ‘static’ version of your application?

Once you have a static application, what do you need to add?

  1. you’ll want to build components that reuse other components and pass data using props.

  2. You can build top-down or bottom-up

What are the three questions you can ask to determine if something is state?

  1. Is it passed in from a parent via props? If so, it probably isn’t state.
  2. Does it remain unchanged over time? If so, it probably isn’t state.
  3. Can you compute it based on any other state or props in your component? If so, it isn’t state.

How can you identify where state needs to live?

  1. dentify every component that renders something based on that state.

  2. Find a common owner component (a single component above all the components that need the state in the hierarchy).

  3. Either the common owner or another component higher up in the hierarchy should own the state.

  4. If you can’t find a component where it makes sense to own the state, create a new component solely for holding the state and add it somewhere in the hierarchy above the common owner component.