This commit is contained in:
focp212@naver.com
2025-09-23 18:18:55 +09:00
parent b92d7c6a44
commit 0e1d624b41
17 changed files with 271 additions and 126 deletions

View File

@@ -0,0 +1,7 @@
import { PaymentStatus } from './types';
export const PaymentStatusBtnGroup = [
{name: '전체', value: PaymentStatus.ALL },
{name: '결제완료', value: PaymentStatus.COMPLETE },
{name: '미결제', value: PaymentStatus.UNPAID }
];