gatilho modal após algum tempo reaja js

useEffect(()=>{
  setTimeout(()=>{
    setShow(true)
  }, 2000)
}, [])
Mushy Mallard