npm install @ingdaeho/payments
yarn add @ingdaeho/payments
pnpm add @ingdaeho/payments
"node": ">=18"
"peerDependencies": {
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
import { usePaymentWidget } from '@ingdaeho/payments';
import '@ingdaeho/payments/styles.css';
function Component() {
const { PaymentWidget, initPayment } = usePaymentWidget();
return (
<div>
<button onClick={initPayment}>start Payment</button>
<PaymentWidget />
</div>
);
}