Let’s get you set up with Link using our React SDK
Create a React project
npm create vite@latest
Install the WalletKit SDK
npm install @walletkit/react-link walletkit-js
Setup WalletKitLink & WalletKitLinkProvider
WalletKitLink
WalletKitLinkProvider
import {WalletKitLink} from "@walletkit/react-link" const wkLink = new WalletKitLink({ projectId: '<WalletKit-Project-ID>', }); export function App() { return ( <WalletKitLinkProvider link={wkLink}> ... </WalletKitLinkProvider> ) }