알람루트 추가

This commit is contained in:
focp212@naver.com
2025-11-14 10:45:21 +09:00
parent cda7786ccf
commit e5244429a5
2 changed files with 10 additions and 7 deletions

View File

@@ -1,17 +1,11 @@
import { PATHS } from '@/shared/constants/paths';
import { useNavigate } from '@/shared/lib/hooks/use-navigate';
import { CashReceiptListProps } from '../model/types';
import { ListDateGroup } from './list-date-group';
import { useTranslation } from 'react-i18next';
export const CashReceiptList = ({
transactionCategory,
listItems,
setDetailData
}: CashReceiptListProps) => {
const { navigate } = useNavigate();
const { t } = useTranslation();
const getListDateGroup = () => {
let rs = [];
let date = '';
@@ -62,7 +56,6 @@ export const CashReceiptList = ({
<div className="transaction-list">
{ getListDateGroup() }
</div>
</>
);
};