import { useState } from "react" export default function Form4() { const [activeIndex, setActiveIndex] = useState(1) const handleOnClick = (index) => { setActiveIndex(index) } return ( <>

Check Your Favorite Insurance

Get Started Favorite Insurance

{/*-============spacing==========-*/}
{/*-============spacing==========-*/}
  • handleOnClick(1)}>
  • handleOnClick(2)}>
  • handleOnClick(3)}>
  • handleOnClick(4)}>
  • handleOnClick(5)}>
Selected Value: 4000
img
Selected Value: 4000
img
Selected Value: 4000
img
Selected Value: 4000
img
Selected Value: 4000
img
{/*-============spacing==========-*/}
{/*-============spacing==========-*/}
) }