Skip to content

Latest commit

 

History

History
22 lines (14 loc) · 1.03 KB

workshop-0.md

File metadata and controls

22 lines (14 loc) · 1.03 KB

Workshop 0 - Kitchen Sink

As discussed earlier in the training, there is a difference between containers and presentational (dumb) components. Presentational components are small components that are meant to be reusable throughout the application, that have data and/or callbacks passed in and emit events out. They do not know about the state of the application, or how they are being used.

To help get you started, check out the workshop-0 branch.

$ git checkout -b workshop-0 origin/workshop-0

There you will find a simple application with a kitchen-sink container. If you start the application and navigate to http://localhost:3000/kitchen-sink, you will see the start of a page that is meant to demonstrate each dumb component.

As we go through and complete the components, update the kitchen sink to make use of them.

The following items have already been completed for you for demonstration:

  • Container
  • Card
  • Icons/CheckIcon
  • Icons/UserIcon

There are placeholders and skeletons for the rest of the components.