This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Parent Component (app/test/canvas/page.tsx) | |
// 1. Setup State and Refs | |
const iframeRef = useRef<HTMLIFrameElement>(null); | |
const [messagePort, setMessagePort] = useState<MessagePort | null>(null); | |
// 2. Message Sending Function | |
function sendMessageToChild() { | |
if (!messagePort) return; | |
messagePort.postMessage("Hello from parent"); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{} |