import { component$, useContext } from "@builder.io/qwik"; import { ChecklistContext } from '~/store/checklist-context'; import type { Section } from "~/types/PSC"; export default component$(() => { const checklists = useContext(ChecklistContext); return (
{checklists.value.map((section: Section, index: number) => (

{section.title}

hello

))}
); });