chore: initialize Tauri v2 project scaffold

This commit is contained in:
KimiSwitch Dev
2026-07-06 17:12:28 +08:00
commit dd53e4fb20
16 changed files with 10696 additions and 0 deletions
+9
View File
@@ -0,0 +1,9 @@
@tailwind base;
@tailwind components;
@tailwind utilities;
html, body, #root {
height: 100%;
margin: 0;
overflow: hidden;
}
+10
View File
@@ -0,0 +1,10 @@
import React from "react";
import ReactDOM from "react-dom/client";
import App from "./App";
import "./index.css";
ReactDOM.createRoot(document.getElementById("root")!).render(
<React.StrictMode>
<App />
</React.StrictMode>
);