src/hooks/use-iframe-height.tsx'use client'import { useEffect } from 'react'// ----------------------------------------------------------------------const IframeHeight = () => {useEffect(() => {// Only run if inside an iframeif (window.self === window.top) {return}const sendHeight = () => {const height = document.body.scrollHeightwindow.parent.postMessage({type: 'height',value: height,},
Showing the first 20 lines.
Get full code