Skip to content

Latest commit

 

History

History
29 lines (20 loc) · 442 Bytes

README.md

File metadata and controls

29 lines (20 loc) · 442 Bytes

Atome paylater react native SDK

Installation

npm install react-native-atome-paylater

Usage

import {isAtomeAppInstalled} from 'react-native-atome-paylater';
import {handlePaymentURL} from 'react-native-atome-paylater';

const init = async () => {
  const installed = await isAtomeAppInstalled();
  console.log(installed);
};

handlePaymentURL('url');

React.useEffect(() => {
  init();
}, []);

License

MIT