You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Make displayNameHandler take displayName getter into account
Now the display name will correctly be picked up for a component defined
as
```
class Component extends React.Component {
static get displayName() {
return 'Name';
}
}
```
Fixes#61
0 commit comments