Atlas Pay by Raven
]github-license-url
Atlas Pay by Raven bank allows you recieve payments and build powerful checkout experience on your website and apps, to use this you will need to create an account on raven atlas, visit, "Raven bank" for more.
Live Demo
✨ Features
- Card Payments. (Visa, MasterCard)
- USSD Payment.
- Bank Transfers.
- NQR Payments.
- Pay with Raven.
Installation:
npm install atlas-pay
or
```bash
yarn add atlas-pay
Usage :
Atlas-Pay provides you with few Javascript API's to interact with below is an example implementation of the atlas-pay library:
import React from 'react'
import ReactDOM from 'react-dom/client'
import { RavenButton } from 'raven-bank-ui'
const root = ReactDOM.createRoot(document.getElementById('root') as HTMLElement)
root.render(
<React.StrictMode>
<div>
<h2>My Raven Button</h2>
<RavenButton />
</div>
<hr />
</React.StrictMode>,
)
"postbuild": "node scripts/copy && npm run size",