React Setup
The library can also be used as a React component:
Install the package
npm install @open-iframe-resizer/reactImport the component
import { IframeResizer } from "@open-iframe-resizer/react";
function YourComponent() {  return (    <div>      <IframeResizer src="https://github.com" />    </div>  );}Example
A full working project is also available here