Hi @Amine-H I like the new release, the helpers look clean 👍 There is a little issue, `Show` supports only returning one element. This will not work: ``` Other element ``` React 16 supports this with Fragments, not sure if it will create compatibility issues with projects using older versions. ``` export default (props) => { const { if: visible, children } = props; if(visible){ return {children} } return null; } ``` Let me know if you have some solutions in mind.
Hi @Amine-H I like the new release, the helpers look clean 👍
There is a little issue,
Showsupports only returning one element.This will not work:
React 16 supports this with Fragments, not sure if it will create compatibility issues with projects using older versions.
Let me know if you have some solutions in mind.