render-props-compose
render-props-compose copied to clipboard
Doesn't work in Preact
I ported the demo into Preact: https://codesandbox.io/s/kw9yy439yv
Preact treats children differently. Its always an array https://github.com/developit/preact-compat/issues/366
We make easily make this work for React and Preact by checking if children is an array of length 1 with a function, and pop it out. I'll get PR up
Sure, PRs are welcome!