import { useState } from "react" export default function Form2() { const [activeIndex, setActiveIndex] = useState(1) const handleOnClick = (index) => { setActiveIndex(index) } return ( <>
{/*-============spacing==========-*/}
{/*-============spacing==========-*/}
img
img
img
img

Get In Touch

Get Started your Favorite Insurance

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