chore(react): use useIsomorphicLayoutEffect hook to prevent SSR warning
This commit is contained in:
@@ -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;
|
||||
Reference in New Issue
Block a user