React Dev Tool showing components as single letters

Viewed 869

Wondering if it is normal for React Dev Tool on Chrome to components as many single letters on inspection?

I am trying to inspect some websites to better understand how good companies structure and write their React code, but all I ever see is stuff like <t> <y>, etc.

Here is an image of what I'm seeing:

https://ibb.co/4gCx7DJ

Could someone explain why this is?

1 Answers

Applications in production minify there code to save network resources. Thus, when you inspect in the devtools you do not see the full component names. However the prop names and state should be visible.

Related