Initial commit of generated project

This commit is contained in:
2025-03-29 17:49:28 +01:00
commit 1c794304ec
26 changed files with 3192 additions and 0 deletions

36
src/routes/index.tsx Normal file
View File

@@ -0,0 +1,36 @@
import { createFileRoute } from '@tanstack/react-router'
import logo from '../logo.svg'
import '../App.css'
export const Route = createFileRoute('/')({
component: App,
})
function App() {
return (
<div className="App">
<header className="App-header">
<img src={logo} className="App-logo" alt="logo" />
<p>
Edit <code>src/routes/index.tsx</code> and save to reload.
</p>
<a
className="App-link"
href="https://reactjs.org"
target="_blank"
rel="noopener noreferrer"
>
Learn React
</a>
<a
className="App-link"
href="https://tanstack.com"
target="_blank"
rel="noopener noreferrer"
>
Learn TanStack
</a>
</header>
</div>
)
}