0.1.4 • Published 7 months ago
finmont-wallet-sdk v0.1.4
finmont-checkout-sdk
finmont-wallet-SDK is a tool for simplifying complex tasks in your applications that provides the widgets along with the functions useful in processing the payments.
Installation
You can install the SDK using npm:
npm install finmont-wallet-sdk
or
yarn add finmont-wallet-sdk
Requirements
The minimum supported version of React is v16.0. If you use an older version, upgrade React to use this library.
Getting Started
To get started with finmont-checkout-sdk, import it and configure it:
import configureSdk from 'finmont-checkout-sdk';
The SDK offers various components and functionalities. Here's an example of its usage:
import { useSdk } from 'pop-checkout-sdk';
const App = () => {
// State declarations
// ...
const { getInfo, Widget, Modal3DS } = useSdk();
// Other logic and functionalities using SDK
return (
// Your React components and logic utilizing the SDK
// ...
);
};
export default App;