kios-webapp/apps/api/src/blocks/PageContent.ts
2024-03-07 15:31:41 +01:00

18 lines
400 B
TypeScript

import { Block } from "payload/types";
export const PageContent: Block = {
slug: "pageContent",
interfaceName: "PageContent",
fields: [
{
name: "description",
type: "textarea",
defaultValue:
"This block will display the content of the page (if any). Please edit the original page change the value.",
admin: {
readOnly: true,
},
},
],
};