UNPKG

@dynamic-labs/sdk-react-core

Version:

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

9 lines (6 loc) 260 B
'use client' import { jsx } from 'react/jsx-runtime'; import { Main } from './Main.js'; import { IsBrowser } from './components/IsBrowser/IsBrowser.js'; const DynamicAuthFlow = () => (jsx(IsBrowser, { children: jsx(Main, {}) })); export { DynamicAuthFlow };