first commit

This commit is contained in:
Jefferyhcool
2025-04-13 17:44:54 +08:00
commit 0e0b8da317
112 changed files with 4397 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
import './App.css'
import {HomePage} from "./pages/Home.tsx";
import {useTaskPolling} from "@/hooks/useTaskPolling.ts";
function App() {
useTaskPolling(3000) // 每 3 秒轮询一次
return (
<>
<HomePage></HomePage>
</>
)
}
export default App