`ClientOnly` fallback
I found this code for a client that only runs on the clientbut how can I get it to render a fallback?
function ClientOnly(props: { children: JSX.Element }) {
const [ getRender, setRender ] = createSignal()
onMount(() => setRender(() => props.children))
return getRender as any as JSX.Element
}