update
This commit is contained in:
12
src/pages/home/index.tsx
Normal file
12
src/pages/home/index.tsx
Normal 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>
|
||||
);
|
||||
};
|
||||
Reference in New Issue
Block a user