2025-05-20 16:28:48 +00:00
|
|
|
import React from 'react';
|
|
|
|
|
import { Routes, Route } from 'react-router-dom';
|
2025-05-20 16:33:08 +00:00
|
|
|
import { Home, About } from '@src/pages';
|
2025-05-23 22:22:56 +00:00
|
|
|
import { Shell } from '../../components';
|
2025-05-20 16:28:48 +00:00
|
|
|
|
|
|
|
|
const AppRouter = () => {
|
|
|
|
|
return (
|
2025-05-23 22:22:56 +00:00
|
|
|
<Shell>
|
|
|
|
|
<Routes>
|
|
|
|
|
<Route path="/" element={<Home />} />
|
|
|
|
|
<Route path="/about" element={<About />} />
|
|
|
|
|
</Routes>
|
|
|
|
|
</Shell>
|
2025-05-20 16:28:48 +00:00
|
|
|
);
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export default AppRouter
|