| 1234567891011121314151617181920212223 |
- /**
- * Copyright (c) 2025 Bytedance Ltd. and/or its affiliates
- * SPDX-License-Identifier: MIT
- */
- import '@flowgram.ai/free-layout-editor/index.css';
- import { FreeLayoutEditorProvider, EditorRenderer } from '@flowgram.ai/free-layout-editor';
- import './index.less';
- import { useEditorProps } from './use-editor-props';
- export const FlowGramLogo = () => {
- const editorProps = useEditorProps();
- return (
- <div className="flowgram-logo-container">
- <FreeLayoutEditorProvider {...editorProps}>
- <EditorRenderer />
- </FreeLayoutEditorProvider>
- </div>
- );
- };
|