import React, {useState} from 'react' import RecentActivityTable from './WalletComponent/RecentActivityTable' import LoadingSpinner from '../Spinners/LoadingSpinner' function AddFund({payment}) { //STATE FOR CONTROLLED INPUTS let [inputs, setInputs] = useState('0') // FUNCTION TO HANDLE INPUT CHANGE const handleChange = ({target:{name, value}}) => { setInputs(value) } //FUNCTION TO HANDLE SUBMIT const handleSubmit = (e) => { e.preventDefault(); //valid inputs before submitting. Just for texting remove later setInputs('') } return (

Add Credit with Account Deposit



Add Credit with Account Deposit


Transfer fund to WrenchBoard GTB Account 0250869867

Make sure you add your account username in the notes part of the transfer for prompt processing. When the transfer is complete notify here Contact us

Recent Activity

Activity Report

{payment.loading ? : }
) } export default AddFund