nextspace
    Preparing search index...

    Variable SectionCardConst

    SectionCard: React.FC<
        {
            children: React.ReactNode;
            expanded: boolean;
            flash?: boolean;
            headerChip?: React.ReactNode;
            id: string;
            onToggle: (expanded: boolean) => void;
            title: string;
        },
    > = ...

    A collapsible white card used to lay out the Details sections (Event Details, Schedule, Platform & format, Assistant configuration, Moderators & presenters, Reading & resources). Expand state is controlled by the caller so a Status.tsx readiness-checklist row can jump to and expand a specific card without SectionCard needing to know about that interaction.