rumahjo/app/component/verifikasi/waverify.js

15 lines
373 B
JavaScript
Raw Normal View History

2024-09-07 00:46:58 +00:00
import React from "react";
import { useRouter } from "next/navigation";
const WaVerify = (props) => {
const route = useRouter();
return <>
<button onClick={()=>{
route.push('/waverify')
setVisible(null)
}} className="block rounded bg-yellow-500 w-full text-white p-2 ">Verify WA</button>
</>
}
export default WaVerify;