add recipient component added

This commit is contained in:
victorAnumudu
2023-04-23 12:33:17 +01:00
parent 23a3426970
commit eaa037dac9
5 changed files with 173 additions and 5 deletions
+2
View File
@@ -6,6 +6,7 @@ import Layout from '../Partials/Layout'
import Balance from './Balance'
import TransferFund from './TransferFund'
import AddFund from './AddFund'
import AddRecipient from './AddRecipient'
function Wallet() {
return (
@@ -27,6 +28,7 @@ const WalletRoutes = () => {
<Route path='transfer-fund' element={<TransferFund />} />
<Route index element={<Balance />} />
<Route path='*' element={<Navigate to='/' />} />
<Route path='transfer-fund/add-recipient' element={<AddRecipient />} />
</Route>
</Routes>
)