React
Steps to integrate the Web SDK into React application.
To install the Preventor Web SDK, add the following to your project’s:
- 1.Add
https://sdk.preventor.com/pvtid/verifyme/verifyme.esm.js
in yourpublic/index.html
.
<script
type="module"
src="https://sdk.preventor.com/pvtid/verifyme/verifyme.esm.js"
></script>
2. Setup the button in your component file
import React, { useEffect, useRef } from "react";
export default function App() {
const pvtButtonRef = useRef(null);
useEffect(() => {
window.PvtVerifymeConfig = YOUR_CONFIGURATION;
}, []);
return <pvt-button ref={pvtButtonRef}></pvt-button>;
}
You have successfully installed the Preventor Web SDK!
Last modified 3mo ago