initial-data.ts 363 B

12345678910111213141516171819
  1. /**
  2. * Copyright (c) 2025 Bytedance Ltd. and/or its affiliates
  3. * SPDX-License-Identifier: MIT
  4. */
  5. import { WorkflowJSON } from '@flowgram.ai/free-layout-editor';
  6. export const DEFAULT_INITIAL_DATA: WorkflowJSON = {
  7. nodes: [
  8. {
  9. id: 'node_0',
  10. type: 'custom',
  11. meta: {
  12. position: { x: 400, y: 0 },
  13. },
  14. },
  15. ],
  16. edges: [],
  17. };