UNPKG
decision-tree-maker
Version:
latest (0.0.9)
0.0.9
0.0.1
Decision tree maker lib
decision-tree-maker
/
lib
/
cjs
/
decision-tree
/
TreeNodeElement
/
TextInput.d.ts
9 lines
(8 loc)
•
214 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
import
{
FC
}
from
'react'
;
interface
TextInputProps
{
title
:
string
;
value
?:
string
;
onChange
:
(
value
:
string
) =>
void
; }
declare
const
TextInput
:
FC
<
TextInputProps
>;
export
default
TextInput
;