Initial commit: scaffold Tauri app

This commit is contained in:
Michael Chihlas
2026-05-08 14:31:16 -04:00
commit a8255b90d5
38 changed files with 426 additions and 0 deletions

9
src/main.tsx Normal file
View File

@@ -0,0 +1,9 @@
import React from "react";
import ReactDOM from "react-dom/client";
import App from "./App";
ReactDOM.createRoot(document.getElementById("root") as HTMLElement).render(
<React.StrictMode>
<App />
</React.StrictMode>,
);