I know that setting the displayName is sometimes required especially when you\'re dealing with production builds. I want to know how to set it using my function
displayName
Figured it out
const MyComponent = props => { return ( How you doin? ) } MyComponent.displayName = "MyComponent"
How you doin?