Hi, it's often the case there is a need to conditionally render components given data that may be undefined.
Given how Solid handles reactivity it seems it is not type safe to use boolean evaluation or ternary statement to conditionally render something. The Show component seems to solve this issue but will only provide a callback to render children of
keyed
keyed
is true, I am unsure of the consequences of using keyed. Please see the example below which should illustrate the question fairly clearly.