React

Steps to integrate the Web SDK into React application.

1. Installation

To install the Preventor Web SDK, add the following to your project’s:

  1. Add https://sdk.preventor.com/pvtidaas/broker/broker.esm.js in your public/index.html.

<script
    type="module"
    src="https://sdk.preventor.com/pvtidaas/broker/broker.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.PvtBrokerSDK = YOUR_CONFIGURATION;
  }, []);

  return <pvt-broker ref={pvtButtonRef}></pvt-broker>;
}

You have successfully installed the Preventor Web SDK!

Last updated