()
| 324 | }, []); |
| 325 | |
| 326 | const handleImport = async () => { |
| 327 | const urls = importRef.current!.dom.value.split("\n").filter((v) => v); |
| 328 | importByUrlsLocal(urls); // 异步却不用等候? |
| 329 | setImportVisible(false); // 不等待 importByUrlsLocal? |
| 330 | }; |
| 331 | |
| 332 | return ( |
| 333 | <ScrollBoundary parentNodeSelector="#root"> |
no test coverage detected