UNPKG
react-modal-plr
Version:
latest (1.0.44)
1.0.44
1.0.43
1.0.42
1.0.41
1.0.40
1.0.39
1.0.38
react component library
github.com/Priscille-LR/react-modal
Priscille-LR/react-modal
react-modal-plr
/
dist
/
index.d.ts
11 lines
(8 loc)
•
254 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
React
, {
SetStateAction
}
from
'react'
;
interface
IModalProps
{
setShowModal
:
React
.
Dispatch
<
SetStateAction
<
boolean
>>;
children
:
React
.
ReactNode
;
buttonContent
:
string
; }
declare
const
Modal
:
React
.
FC
<
IModalProps
>;
export
{
Modal
};