mirror of
https://github.com/whyour/qinglong.git
synced 2025-12-13 07:25:05 +08:00
14 lines
244 B
TypeScript
14 lines
244 B
TypeScript
import { FormMeta } from '@flowgram.ai/fixed-layout-editor';
|
|
|
|
import { FormHeader } from '../../form-components';
|
|
|
|
export const renderForm = () => (
|
|
<>
|
|
<FormHeader />
|
|
</>
|
|
);
|
|
|
|
export const formMeta: FormMeta = {
|
|
render: renderForm,
|
|
};
|