import { useFieldSchema } from '@formily/react'; import { GeneralSchemaDesigner, SchemaSettings, useCollection } from '@nocobase/client'; import React from 'react'; export const HelloDesigner = () => { const { name, title } = useCollection(); const fieldSchema = useFieldSchema(); return ( ); };