I have a normal react Modal Component, what I want to do is something like this
const someWorkHandler = () => {
mycustomFn.ConfirmModal({
title: "bla bla",
okFunc : ()=>{},
...
})
}
and my component is like
const ConfirmModal = ({title, okFunction , ...}) => {
return //JSX
}