부가서비스 - 링크결제 발송내역 상세: 페이지 로드 API, 재발송 API 연결

This commit is contained in:
HyeonJongKim
2025-09-22 11:16:13 +09:00
parent 85e85f1f89
commit 4d5d195af2
16 changed files with 417 additions and 161 deletions

View File

@@ -0,0 +1,31 @@
import { LinkPaymentWaitListProps } from '../../model/types';
import { ListDateGroup } from '../list-date-group';
export const LinkPaymentWaitList = ({
additionalServiceCategory,
listItems
}: LinkPaymentWaitListProps) => {
const getListDateGroup = () => {
let rs = [];
for (const [key, value] of Object.entries(listItems)) {
rs.push(
<ListDateGroup
additionalServiceCategory={additionalServiceCategory}
key={key}
date={key}
items={value}
></ListDateGroup>
);
}
return rs;
};
return (
<>
<div className="transaction-list">
{getListDateGroup()}
</div>
</>
)
};