react rewrite

This commit is contained in:
2024-10-25 18:39:38 +02:00
parent 8c31799674
commit 2bd6e392d4
107 changed files with 736 additions and 751 deletions
+15
View File
@@ -0,0 +1,15 @@
import './App.scss'
import {Routes, BrowserRouter as Router, Route} from "react-router-dom";
import Main from "./pages/Main.tsx";
function App() {
return (
<Router>
<Routes>
<Route path="/" element={<Main />} />
</Routes>
</Router>
)
}
export default App