상세 수정

This commit is contained in:
focp212@naver.com
2025-11-03 20:57:55 +09:00
parent 344e5c324a
commit d2b477e7bd
38 changed files with 1569 additions and 256 deletions

View File

@@ -3,7 +3,8 @@ import { ListDateGroup } from './list-date-group';
export const EscrowList = ({
transactionCategory,
listItems
listItems,
setDetailData
}: EscrowListProps) => {
const getListDateGroup = () => {
@@ -26,6 +27,7 @@ export const EscrowList = ({
key={ date + '-' + i }
date={ date }
items={ list }
setDetailData={ setDetailData }
></ListDateGroup>
);
}
@@ -43,6 +45,7 @@ export const EscrowList = ({
key={ date + '-last' }
date={ date }
items={ list }
setDetailData={ setDetailData }
></ListDateGroup>
);
}