5 lines
226 B
TypeScript
5 lines
226 B
TypeScript
import { useEffect, useLayoutEffect } from 'react';
|
|
|
|
// we need this hook to prevent a warning when using react-flow in SSR
|
|
export const useIsomorphicLayoutEffect = typeof window !== 'undefined' ? useLayoutEffect : useEffect;
|