It started with a very small problem.

In our React component library, we wanted every component to have a nice displayName.

So we did the obvious thing:

Component.displayName = "Component";

Enter fullscreen mode