/** * Copyright (c) 2025 Bytedance Ltd. and/or its affiliates * SPDX-License-Identifier: MIT */ import React from 'react'; import { autoRenameRefEffect } from '@flowgram.ai/form-materials'; import { Field } from '@flowgram.ai/fixed-layout-editor'; import { FreeFormMetaStoryBuilder, FormHeader } from '../../free-form-meta-story-builder'; const InputsValues = React.lazy(() => import('@flowgram.ai/form-materials').then((module) => ({ default: module.InputsValues, })) ); export const BasicStory = () => ( ( <> | undefined> name="inputsValues" defaultValue={{ a: { type: 'ref', content: ['start_0', 'str'], }, }} > {({ field }) => ( field.onChange(value)} /> )} ), }} /> );