Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 10s
Build & Deploy / 🧪 QA (push) Failing after 2m24s
Build & Deploy / 🏗️ Build (push) Failing after 3m40s
Build & Deploy / 🚀 Deploy (push) Has been skipped
Build & Deploy / 🩺 Health Check (push) Has been skipped
Build & Deploy / 🔔 Notify (push) Successful in 3s
10 lines
361 B
TypeScript
10 lines
361 B
TypeScript
import { ComponentDefinition } from "@mintel/content-engine";
|
|
import { allComponentDefinitions } from "../payload/blocks/allBlocks";
|
|
|
|
/**
|
|
* Single Source of Truth for all MDX component definitions.
|
|
* Now dynamically generated from individual Payload block definitions.
|
|
*/
|
|
export const componentDefinitions: ComponentDefinition[] =
|
|
allComponentDefinitions;
|