feat: react router + no swc

This commit is contained in:
2025-05-20 18:38:01 +02:00
parent 3f369de3fa
commit d9c3223228
5 changed files with 635 additions and 249 deletions

View File

@ -1,10 +1,10 @@
import { useState } from "react";
import reactLogo from "./assets/react.svg";
import viteLogo from "/vite.svg";
import "./App.css";
import { useState } from 'react'
import reactLogo from './assets/react.svg'
import viteLogo from '/vite.svg'
import './App.css'
function App() {
const [count, setCount] = useState(0);
const [count, setCount] = useState(0)
return (
<>
@ -25,8 +25,11 @@ function App() {
Edit <code>src/App.tsx</code> and save to test HMR
</p>
</div>
<p className="read-the-docs">
Click on the Vite and React logos to learn more
</p>
</>
);
)
}
export default App;
export default App