feat: scaffold TaskTracker.Web with Vite, React, TypeScript, Tailwind
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
6
TaskTracker.Web/src/App.tsx
Normal file
6
TaskTracker.Web/src/App.tsx
Normal file
@@ -0,0 +1,6 @@
|
||||
function App() {
|
||||
return <div className="bg-[#0f1117] min-h-screen text-white p-8">
|
||||
<h1 className="text-2xl font-semibold">TaskTracker</h1>
|
||||
</div>
|
||||
}
|
||||
export default App
|
||||
1
TaskTracker.Web/src/index.css
Normal file
1
TaskTracker.Web/src/index.css
Normal file
@@ -0,0 +1 @@
|
||||
@import "tailwindcss";
|
||||
10
TaskTracker.Web/src/main.tsx
Normal file
10
TaskTracker.Web/src/main.tsx
Normal 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>,
|
||||
)
|
||||
Reference in New Issue
Block a user