Co-authored-by: sealday <sealday@gmail.com> Reviewed-on: daoyoucloud/tachybase#1045
16 lines
437 B
TypeScript
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>
|
|
);
|
|
};
|