import type { FeatureGridBlockValue } from "@/types/wagtail"; export default function FeatureGrid({ value }: { value: FeatureGridBlockValue }) { return (
{value.heading && (

{value.heading}

)}
{value.items?.map((item, index) => (

{item.title}

{item.description}

))}
); }