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
/
AddButton.d.ts
7 lines
(6 loc)
•
159 B
TypeScript
View Raw
1
2
3
4
5
6
7
import
{
FC
}
from
'react'
;
interface
AddButtonProps
{
onClick
:
() =>
void
; }
declare
const
AddButton
:
FC
<
AddButtonProps
>;
export
default
AddButton
;