diff --git a/src/components/MyWallet/AddRecipient.jsx b/src/components/MyWallet/AddRecipient.jsx
new file mode 100644
index 0000000..0064eca
--- /dev/null
+++ b/src/components/MyWallet/AddRecipient.jsx
@@ -0,0 +1,166 @@
+import React, {useState} from 'react'
+import { Link } from 'react-router-dom'
+import Icons from '../Helpers/Icons'
+
+function AddRecipient() {
+
+ //STATE FOR CONTROLLED INPUTS
+ let [inputs, setInputs] = useState({
+ firstname: '',
+ lastname: '',
+ country: '',
+ 'bank-name': '',
+ 'account-number': '',
+ 'repeat-account-number': '',
+ 'account-type': '',
+ state: '',
+ city: ''
+ })
+
+ // FUNCTION TO HANDLE INPUT CHANGE
+ const handleChange = ({target:{name, value}}) => {
+ setInputs(prev => ({...prev, [name]:value}))
+ }
+
+ //FUNCTION TO HANDLE SUBMIT
+ const handleSubmit = (e) => {
+ e.preventDefault();
+
+ //valid inputs before submitting. Just for texting remove later
+
+ // setInputs((prev)=>{
+ // for(let input in prev){
+ // prev[input] = ''
+ // }
+ // })
+ // RETURN INPUTS TO EMPTY STRING
+ setInputs({
+ firstname: '',
+ lastname: '',
+ country: '',
+ 'bank-name': '',
+ 'account-number': '',
+ 'repeat-account-number': '',
+ 'account-type': '',
+ state: '',
+ city: ''
+ })
+ }
+ return (
+
+ )
+}
+
+export default AddRecipient
\ No newline at end of file
diff --git a/src/components/MyWallet/TransferFund.jsx b/src/components/MyWallet/TransferFund.jsx
index a754224..715dc69 100644
--- a/src/components/MyWallet/TransferFund.jsx
+++ b/src/components/MyWallet/TransferFund.jsx
@@ -83,7 +83,7 @@ function TransferFund() {
*
!
- Add New
+ Add New
Select...
diff --git a/src/components/MyWallet/Wallet.jsx b/src/components/MyWallet/Wallet.jsx
index 71c0680..2aeb381 100644
--- a/src/components/MyWallet/Wallet.jsx
+++ b/src/components/MyWallet/Wallet.jsx
@@ -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 = () => {
} />
} />
} />
+ } />
)
diff --git a/src/components/Partials/MobileSideBar.jsx b/src/components/Partials/MobileSideBar.jsx
index 0bc25bc..15835f2 100644
--- a/src/components/Partials/MobileSideBar.jsx
+++ b/src/components/Partials/MobileSideBar.jsx
@@ -122,7 +122,7 @@ export default function MobileSidebar({ sidebar, action, logoutModalHandler }) {
className="nav-item flex items-center justify-start space-x-3.5"
>
-
+
Messages
diff --git a/src/components/Partials/Sidebar.jsx b/src/components/Partials/Sidebar.jsx
index d21d62e..7fdd242 100644
--- a/src/components/Partials/Sidebar.jsx
+++ b/src/components/Partials/Sidebar.jsx
@@ -122,7 +122,7 @@ export default function Sidebar({ sidebar, action, logoutModalHandler }) {
}`}
>
-
+
-
+
-
+