UNPKG

@talend/react-forms

Version:

React forms library based on json schema form.

10 lines (9 loc) 330 B
import { ActionProps, DisplayMode, FormDefinition } from './types'; type FormSwitcherProps = { loading?: boolean; actions?: ActionProps[]; displayMode?: DisplayMode; data?: FormDefinition; } & any; export default function FormSwitcher(props: FormSwitcherProps): import("react/jsx-runtime").JSX.Element; export {};