Skip to content

v2.0.0

Compare
Choose a tag to compare
@helloitsjoe helloitsjoe released this 25 Aug 14:30
  • Allow for single return value from hooks
  • Update function argument API
// Previously
composeHooks(props => {
  useFunc: useFunc(props)
});

// Now
composeHooks(props => {
  useFunc: () => useFunc(props)
});