@talend/react-forms
Version:
React forms library based on json schema form.
12 lines (11 loc) • 342 B
TypeScript
import { CSSProperties } from 'react';
interface TextModeCodeProps {
id?: string;
options?: CSSProperties;
schema: {
title: string;
};
value?: string | number;
}
export default function TextModeCode({ id, schema: { title }, value, options }: TextModeCodeProps): import("react/jsx-runtime").JSX.Element;
export {};