import { ParagraphProps } from "components/paragraph" import { Section } from "components/section" import { SectionHeader } from "components/section-header" import { FormattedText } from "./formatted-text" export function ParagraphFAQ({ paragraph, ...props }: ParagraphProps) { return (
{paragraph.field_items && (
{paragraph.field_items.map((card) => (

{card.field_heading}

{card.field_text?.processed && ( )}
))}
)}
) }