react-hyperscript-helpers
react-hyperscript-helpers copied to clipboard
Purpose of isRendered?
Hi,
what's the idea behind the "isRendered" property?
Wouldn't it be more straight forward to do this
shouldDisplay &&
h(Khaled)
// -> null
instead of this
h(Khaled, { display: false });
// -> null
?
Am i missing something or is this just personal preference?