
Compound Components
Compound components is a pattern in which components are used together that they share an implicit state that let them communicate with each other in the background.
Think of compound components like the<select>
and<option>
elements in HTML.
Apart they donβt do too much, but together they allow you to create the complete experience.βββKent C. Dodds

If you were to try and use one without the other it wouldn't work (or make sense). Additionally it's actually a really great API, let's check out what it would look like if we didn't have a compound components API to work with (remember, this is HTML, not JSX):

it's a mess, so the compound components API gives you a nice way to express relationships between components.
Another important aspect of this is the concept of "implicit state." The <select>
element implicitly stores state about the selected option and shares that with its children so they know how to render themselves based on that state. But that state sharing is implicit because there's nothing in our HTML code that can even access the state (and it doesn't need to anyway).
Alright, let's get a look at a legit React component that exposes a compound component to understand these principles further.
Here's an example of the <Form />
component from Semantic Ui React that exposes a compound components API:

In this example, the <Form> establishes some shared implicit state. The <Form.Group>, <Form.Input>, <Form.Select> and <Form.Button> Β components each access and/or manipulate that state, and it's all done implicitly. This allows you to have the expressive API you're looking for.
So we will try to build a simple navigation bar where all its nav elements will share the same implicit state using context api and we will apply a different background color for the active nav element.
So here is how our Nav Component look like :

And here is how we call it in our App(root) Component :

You can find the whole code in CodeSandbox https://codesandbox.io/s/compound-component-hooks-hsghd?file=/src/Nav.js
Thanks for reading!

PS : to get more details about this awesome pattern watch this React Hooks: Refactor compound components to hooks.