components/elements/CardGrid/index.jsjavascript
import definition from "./schema.js";
import { CardGrid } from "./CardGrid";

/** Element definition consumed by elements/registry.js (pattern: StoryTitle/index.js). */
export default {
  ...definition,
  component: CardGrid,
  adapter: ({ stats, highlight }) => ({
    stats: stats || [],
    highlight: highlight || null,
  }),
};