import React from "react"; import { InputCompOne } from ".."; interface SpouseDetailsProps { inputValues: { spouseBVN: string; }; handleChange: (e: React.FormEvent) => void; handleInput: (e: React.FormEvent) => void; inputRef: React.RefObject; } const SpouseDetails: React.FC = ({ inputValues, handleChange, handleInput, inputRef, }) => { return ( <>

SPOUSE DETAILS ( If not applicable, please move to the next stage )

); }; export default SpouseDetails;