import { component$ } from "@builder.io/qwik"; import type { Section } from '../../types/PSC'; import Icon from '../core/icon'; import styles from './psc.module.css'; export default component$((props: { sections: Section[] }) => { return (
{props.sections.map((section: Section) => (

0/{section.checklist.length} Done

{section.title}

{section.description}

{/*
*/}
))}
); });