allow modals to open on startup

This commit is contained in:
Anton Tranelis 2024-02-02 13:40:23 +01:00
parent 7bd0781a69
commit ca0022536e

View File

@ -1,6 +1,12 @@
import * as React from "react" import * as React from "react"
import { useEffect } from "react"
export function Modal({children}) { export function Modal({children, showOnStartup}:{children : React.ReactNode, showOnStartup?: boolean}) {
useEffect(() => {
if(showOnStartup)
window.my_modal_3.showModal()
}, [])
return ( return (