feat: scaffold TaskTracker.Web with Vite, React, TypeScript, Tailwind

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-02-26 22:13:49 -05:00
parent 58d57509e5
commit 2b0266b51e
14 changed files with 5023 additions and 0 deletions

View File

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