Hello, is it possible to render fallback content for Slot? The following implementation doesn't work and I didn't find anything about it in the documentation.
import { component$, Slot } from '@builder.io/qwik';
const TestComponent = component$(() => {
return <div>{Slot ? <Slot /> : 'This is my fallback content, if there is no child passed into slot'}</div>;
});
export default component$(() => {
return (
<>
<TestComponent />
<TestComponent>Test</TestComponent>
</>
);
});