feat(SW-285): Ship support for ContentPageBlocksContent

This commit is contained in:
Chuma McPhoy
2024-08-30 08:10:57 +02:00
parent b806824fde
commit 9a51cc6cb5
9 changed files with 198 additions and 13 deletions
+5
View File
@@ -0,0 +1,5 @@
import { Block } from "@/server/routers/contentstack/contentPage/output"
export type BlocksProps = {
blocks: Block[]
}
+3
View File
@@ -0,0 +1,3 @@
export enum ContentBlocksTypenameEnum {
ContentPageBlocksContent = "ContentPageBlocksContent",
}