UNPKG

@dynamic-labs/sdk-react-core

Version:

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

7 lines (6 loc) 233 B
import { Dispatch, SetStateAction } from 'react'; export declare const useViewController: <VIEW extends string>(initialView: VIEW) => { goToInitialView: () => void; setView: Dispatch<SetStateAction<VIEW>>; view: VIEW; };