table and filter reusable component
This commit is contained in:
@@ -1,11 +1,14 @@
|
||||
import { FC } from 'react'
|
||||
import { Paths } from '@/utils/Paths'
|
||||
import { Routes, Route } from 'react-router-dom'
|
||||
import Home from '@/pages/home/Home'
|
||||
import ReceivedList from '@/pages/received/List'
|
||||
|
||||
const AppRouter: FC = () => {
|
||||
return (
|
||||
<Routes>
|
||||
<Route path='/' element={<Home />} />
|
||||
<Route path={Paths.received} element={<ReceivedList />} />
|
||||
</Routes>
|
||||
)
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user