UNPKG

decision-tree-maker

Version:

Decision tree maker lib

9 lines (8 loc) 214 B
import { FC } from 'react'; interface TextInputProps { title: string; value?: string; onChange: (value: string) => void; } declare const TextInput: FC<TextInputProps>; export default TextInput;