tachybase_todo/packages/plugins/@tachybase/plugin-gantt/src/client/Gantt.Designer.tsx
sealday ede7ead8b1 chore(version): release v0.21.34 (#1045)
Co-authored-by: sealday <sealday@gmail.com>
Reviewed-on: daoyoucloud/tachybase#1045
2024-05-24 01:06:06 +08:00

16 lines
437 B
TypeScript

import React from 'react';
import { GeneralSchemaDesigner, useCollection_deprecated, useSchemaTemplate } from '@tachybase/client';
export const GanttDesigner = () => {
const { name, title } = useCollection_deprecated();
const template = useSchemaTemplate();
return (
<GeneralSchemaDesigner
schemaSettings="blockSettings:gantt"
template={template}
title={title || name}
></GeneralSchemaDesigner>
);
};