6119cc202d
* check typeof document in addition to typeof window * remove unused import * Extract SSR check to a central spot * Fix CS * Update changelog Co-authored-by: Jordan Pittman <jordan@cryptica.me>
5 lines
164 B
TypeScript
5 lines
164 B
TypeScript
import { useLayoutEffect, useEffect } from 'react'
|
|
import { isServer } from '../utils/ssr'
|
|
|
|
export let useIsoMorphicEffect = isServer ? useEffect : useLayoutEffect
|