UNPKG

@dynamic-labs/sdk-react-core

Version:

A React SDK for implementing wallet web3 authentication and authorization to your website.

8 lines (5 loc) 267 B
'use client' import { useLayoutEffect, useEffect } from 'react'; // https://usehooks-ts.com/react-hook/use-isomorphic-layout-effect const useIsomorphicLayoutEffect = typeof window !== 'undefined' ? useLayoutEffect : useEffect; export { useIsomorphicLayoutEffect };