mirror of
https://gitee.com/ByteDance/flowgram.ai.git
synced 2025-07-07 17:43:29 +08:00
* chore: add license-header * chore: add precommit * chore: add license header * fix: only js & shell style
16 lines
332 B
TypeScript
16 lines
332 B
TypeScript
/**
|
|
* Copyright (c) 2025 Bytedance Ltd. and/or its affiliates
|
|
* SPDX-License-Identifier: MIT
|
|
*/
|
|
|
|
import React from 'react';
|
|
|
|
// https://github.com/web-infra-dev/rspress/issues/553
|
|
const Editor = React.lazy(() =>
|
|
import('@flowgram.ai/demo-node-form').then((module) => ({
|
|
default: module.Editor,
|
|
}))
|
|
);
|
|
|
|
export { Editor };
|