Releases: helloitsjoe/react-hooks-compose
Releases · helloitsjoe/react-hooks-compose
v2.0.20
07 Dec 14:52
Compare
Sorry, something went wrong.
No results found
Chore
Bump decode-uri-component from 0.2.0 to 0.2.2
Bump loader-utils from 1.4.0 to 1.4.2
v2.0.19
05 Sep 20:09
Compare
Sorry, something went wrong.
No results found
Chore
Include React 17 and 18 in peerDependencies
Remove enzyme and convert tests to React Testing Library
Upgrade dependencies
v2.0.18
28 Mar 04:18
Compare
Sorry, something went wrong.
No results found
v2.0.17
28 Mar 04:01
Compare
Sorry, something went wrong.
No results found
v2.0.16
27 Sep 01:23
Compare
Sorry, something went wrong.
No results found
v2.0.15
30 May 20:41
Compare
Sorry, something went wrong.
No results found
v2.0.14
26 May 12:38
Compare
Sorry, something went wrong.
No results found
v2.0.12
17 Mar 11:14
Compare
Sorry, something went wrong.
No results found
v2.0.0
25 Aug 14:30
Compare
Sorry, something went wrong.
No results found
Allow for single return value from hooks
Update function argument API
// Previously
composeHooks ( props => {
useFunc : useFunc ( props )
} ) ;
// Now
composeHooks ( props => {
useFunc : ( ) => useFunc ( props )
} ) ;