chore(react): use useIsomorphicLayoutEffect hook to prevent SSR warning

This commit is contained in:
moklick
2024-02-20 16:14:39 +01:00
parent c904f5c485
commit c1beb6b58a
2 changed files with 7 additions and 2 deletions
@@ -0,0 +1,4 @@
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;