𝗥𝗲𝗮𝗰𝘁 𝗖𝗼𝗺𝗽𝗼𝗻𝗲𝗻𝘁𝘀: 𝗧𝗵𝗲 𝗕𝘂𝗶𝗹𝗱𝗶𝗻𝗴 𝗕𝗹𝗼𝗰𝗸𝘀

React components are pieces of your user interface. They let you build your app in small parts.

Keep your components small. Keep them focused. Split a component if it does too much.

Example:

  • A UserCard should not fetch data.
  • A UserCard should not handle form submissions.

One component does one job. Start small. Stay consistent. Build complex UIs.

Source: https://dev.to/kahenda/react-components-the-building-blocks-you-need-to-know-215k