mirror of
https://github.com/utopia-os/utopia-ui.git
synced 2025-12-13 07:46:10 +00:00
allow modals to open on startup
This commit is contained in:
parent
7bd0781a69
commit
ca0022536e
@ -1,6 +1,12 @@
|
||||
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 (
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user