/// import { JSONSchema, NAME, pattern, UI } from "commontools"; const InputSchema = { type: "object", properties: { content: { type: "string", default: "", asCell: true, }, }, required: ["content"], } as const satisfies JSONSchema; const OutputSchema = InputSchema; export default pattern( ({ content }: any) => { return { [NAME]: " test", [UI]: (

), content, }; }, InputSchema, OutputSchema, );