Skip to content

Instantly share code, notes, and snippets.

@PatrickJS
Last active July 9, 2024 19:56
Show Gist options
  • Save PatrickJS/b187f126207591f77bdb26bb86cf76d4 to your computer and use it in GitHub Desktop.
Save PatrickJS/b187f126207591f77bdb26bb86cf76d4 to your computer and use it in GitHub Desktop.
import { component$, useSignal, useVisibleTask$ } from '@builder.io/qwik';
export const ResumeBrowser = component$(() => {
const csr = useSignal(false);
// eslint-disable-next-line qwik/no-use-visible-task
useVisibleTask$(() => {
csr.value = true;
});
return csr.value ? <Slot /> : null;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment