Step 2

This is the wireframe of the UI which we are going to build.

Thinking in React involved breaking the UI into a component hierarchy. I can think of at least three components in the above wireframe:

  • A component that represents the search bar
  • A component that represents each meeting
  • A component that wraps the search bar and meetings; let's call it "list meetings"

We will build these components one at a time!