diff options
| author | Solstice <solstice@local> | 2026-06-09 00:06:42 -0700 |
|---|---|---|
| committer | Solstice <solstice@local> | 2026-06-09 00:06:42 -0700 |
| commit | 59708192eb000770ede58f21e5a397c65875eb3b (patch) | |
| tree | 15c270cc1bb7e62094f45af0a91aa335c4e51ed2 /src/main.tsx | |
chore: initial project scaffolding
- Tauri v2 + React + TypeScript (Vite)
- Tailwind CSS v4 via @tailwindcss/vite
- Zustand for state management
- Design system: tokens.css, fonts, icons
- tauri.conf.json: solstice, 900x640, min 700x520
- global.css imports tokens and Tailwind
Diffstat (limited to 'src/main.tsx')
| -rw-r--r-- | src/main.tsx | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/main.tsx b/src/main.tsx new file mode 100644 index 0000000..e6d4740 --- /dev/null +++ b/src/main.tsx @@ -0,0 +1,10 @@ +import React from "react"; +import ReactDOM from "react-dom/client"; +import "./styles/global.css"; +import App from "./App"; + +ReactDOM.createRoot(document.getElementById("root") as HTMLElement).render( + <React.StrictMode> + <App /> + </React.StrictMode>, +); |
