-
Book Overview & Buying
-
Table Of Contents
React Application Architecture for Production - Second Edition
By :
In React, everything is a component. This paradigm allows us to split user interfaces into smaller parts, making it easier to develop larger user interfaces and applications. It also adheres to the DRY (Don't Repeat Yourself) principle by enabling component reusability since we can reuse the same components in multiple places.
In this chapter, we will learn how to build the foundational components for our application's design system. This will make the application UI more consistent and easier to understand and maintain. We will also learn how to document these components with Storybook, a great tool that serves as a catalog for all our reusable UI elements.
We'll cover the following topics:
By the end of this chapter, we'll have a solid understanding of component architecture and a reusable component library documented with Storybook that we can use...