This commit is contained in:
2026-05-16 00:51:11 +08:00
parent 92e4fd11f1
commit 0f23a8f7a0
67 changed files with 153 additions and 384 deletions

View File

@@ -0,0 +1,7 @@
import { useState } from "react";
function App() {
return <div></div>;
}
export default App;

View File

@@ -0,0 +1,13 @@
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>vite-project</title>
</head>
<body>
<div id="root"></div>
<script type="module" src="/main.tsx"></script>
</body>
</html>

View File

@@ -0,0 +1,9 @@
import { StrictMode } from 'react'
import { createRoot } from 'react-dom/client'
import App from './App.tsx'
createRoot(document.getElementById('root')!).render(
<StrictMode>
<App />
</StrictMode>,
)