personal-security-checklist/web/src/store/checklist-context.ts

9 lines
243 B
TypeScript

import { type Signal } from '@builder.io/qwik';
import { createContextId } from '@builder.io/qwik';
import type { Sections } from '../types/PSC';
export const ChecklistContext = createContextId<Signal<Sections>>(
'psc.ChecklistContext'
);