base table

This commit is contained in:
Artyom Tsyrulnikov
2025-07-13 11:32:05 +03:00
commit f74f52f1a4
32 changed files with 2284 additions and 0 deletions

19
src/app/App.tsx Normal file
View File

@@ -0,0 +1,19 @@
import { FC } from "react";
import { Route, Routes } from "react-router-dom";
import { Layout } from "@/app/Layout";
import { Home, NoMatch } from "@/pages";
const App: FC = () => {
return (
<>
<Routes>
<Route path="/" element={<Layout />}>
<Route index element={<Home />} />
<Route path="*" element={<NoMatch />} />
</Route>
</Routes>
</>
);
};
export default App;