payment-gateway-frontend-lib
Version:
Template and quick-starter to create modern React libraries using Rollup.
19 lines (18 loc) • 490 B
TypeScript
import type { StoryObj } from '@storybook/react';
declare const meta: {
title: string;
component: (props: import("../utils/payment-gateway").IPayment) => import("react").JSX.Element;
parameters: {
layout: string;
};
tags: string[];
args: {
publicKey: string;
amount: number;
currency: "THB";
paymentMethod: "credit_card";
};
};
export default meta;
type Story = StoryObj<typeof meta>;
export declare const Default: Story;