The Show control flow is used to conditional render part of the view: it renders children when the when is truthy, a fallback otherwise. It is similar to the ternary operator (when ? children : fallback) but is ideal for templating JSX.
Show can also be used with a callback that returns a null asserted accessor. Remember to only use this accessor when the condition is true or it will throw.