(event: MouseEvent)
| 40 | const [openDialog, setOpenDialog] = useState(false); |
| 41 | // 创建按钮事件 |
| 42 | function onCreateButtonClick(event: MouseEvent) { |
| 43 | setOpenDialog(true); |
| 44 | event.stopPropagation(); |
| 45 | } |
| 46 | // 创建应用或页面 |
| 47 | function handleCreate(data: Record<string, any>, refs: Record<string, any>) { |
| 48 | const submitButtonRef = refs['submit-btn']; |
nothing calls this directly
no outgoing calls
no test coverage detected