Skip to content

React Setup

The library can also be used as a React component:

Install the package

Terminal window
npm install @open-iframe-resizer/react

Import 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