openpanel/packages/devtools-ui/src/components/iframe-page-load-handler.tsx
Stefan Pejcic 09f9f9502d packages
2024-11-07 19:03:37 +01:00

11 lines
282 B
TypeScript

import React from "react";
export const IframePageLoadHandler = () => {
// send message to the parent window to notify that the iframe is loaded
React.useEffect(() => {
window.parent.postMessage({ type: "refine-devtools-iframe-loaded" }, "*");
}, []);
return null;
};