This commit is contained in:
2025-04-03 19:29:57 +08:00
parent 521255c1af
commit 9add82dc7e
28 changed files with 749 additions and 267 deletions

12
src/pages/home/index.tsx Normal file
View File

@@ -0,0 +1,12 @@
import { Route, Routes } from 'react-router-dom';
import { Main } from './layouts';
import { Home } from './Home';
export const App = () => {
return (
<Routes>
<Route element={<Main />}>
<Route path='/' element={<Home />}></Route>
</Route>
</Routes>
);
};