Releases: helloitsjoe/react-hooks-compose
Releases · helloitsjoe/react-hooks-compose
v2.0.20
v2.0.19
Chore
- Include React 17 and 18 in
peerDependencies
- Remove
enzyme
and convert tests to React Testing Library - Upgrade dependencies
v2.0.18
v2.0.18
v2.0.17
v2.0.17
v2.0.16
v2.0.16
v2.0.15
v2.0.15
v2.0.14
v2.0.14
v2.0.12
2.0.12
v2.0.0
- Allow for single return value from hooks
- Update function argument API
// Previously
composeHooks(props => {
useFunc: useFunc(props)
});
// Now
composeHooks(props => {
useFunc: () => useFunc(props)
});