import { Button, InputCompOne, Stepper } from ".."; // import { useNavigate } from "react-router-dom"; // import { RouteHandler } from "../../router/routes"; type Props = { handleNextStep:()=>any } export default function DashboardFormInit({handleNextStep}:Props) { // let navigate = useNavigate(); // const navigateToProfile = () => navigate(RouteHandler.dashboardProfile); return (
{}} />
); } interface Option { value: string; label: string; } const duration: Option[] = [ { value: "", label: "Please Select" }, { value: "6", label: "6 Months" }, { value: "12", label: "12 Months" }, { value: "18", label: "18 Months" }, { value: "24", label: "24 Months" }, ];