Skip to content

Frontend Basic Principles Concise Components

JC Quirin edited this page Jan 28, 2020 · 1 revision

Build Concise, Readable Components that are Function-Specific

Always aim to make it readily obvious as to the purpose and functionality of a particular component. Components should have descriptive names (always capitalize component names and their respective file names), and should be as short as possible to perform a given piece of work. If a particular component gets too large or complex to readily grasp its functioning, it should likely be split into multiple smaller components.

Clone this wiki locally