mirror of
https://github.com/CompassConnections/Compass.git
synced 2025-12-23 22:18:43 -05:00
16 lines
325 B
TypeScript
16 lines
325 B
TypeScript
import { useEffect, useState } from 'react'
|
|
|
|
export function inIframe() {
|
|
try {
|
|
return window.self !== window.top
|
|
} catch (e) {
|
|
return true
|
|
}
|
|
}
|
|
|
|
export function useIsIframe() {
|
|
const [is, setIs] = useState(false)
|
|
useEffect(() => setIs(inIframe()), []) // useEffect so this happens client side
|
|
return is
|
|
}
|