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