Automatically add
displayName
s to recompose components
const Foo = compose(
withProps(...),
withStateHandlers(...),
setDisplayName('Foo'), // You don't have to write this! It will be added by Babel
)(() => (
<div>
foo
</div>
))
yarn add --dev babel-plugin-recompose-set-display-name