Skip to content

0.2.0

Compare
Choose a tag to compare
@jackmellis jackmellis released this 23 Oct 16:50
· 65 commits to master since this release
  • createHOCc and createRenderFnc are now not fully curried methods, each takes configuration arguments and returns a function that accepts a component.
    // 0.1:
    createHOCc(options)(renderWith)(Component)
    // or
    createHOCc(options, renderWith, Component)
    // must now be written as
    createHOCc(options, renderWith)(Component)