# Alter The Display Name Of A Component Components adopt their display name from the class or function that renders them. A component's display name becomes important to know about as soon as you start digging through the [React devtools](https://github.com/facebook/react-devtools) interface -- whether debugging or just perusing the component hierarchy, the display names of components is what you'll see. In most circumstances, the display name is good enough as is. If you want or need to, you can change it. ```javascript const Hello = ({ name }) => { return (