This commit is contained in:
focp212@naver.com
2025-09-16 17:40:27 +09:00
parent ee9f56f298
commit bf26e9ff05
21 changed files with 154 additions and 113 deletions

View File

@@ -2,10 +2,15 @@ export enum PaymentTabKeys {
Info = 'Info',
DataNotification = 'DataNotification',
};
export enum PaymentInfoItemType {
Comission = 'Comission',
NoInterest = 'NoInterest'
};
export interface PaymentTabProps {
activeTab: PaymentTabKeys;
};
export interface InfoItemProps {
type?: PaymentInfoItemType;
payName?: string;
payImage?: string;
infoLink?: string;