알림 수정

This commit is contained in:
focp212@naver.com
2025-10-28 10:24:02 +09:00
parent d9ebc2c51f
commit b4976ec45c
11 changed files with 115 additions and 25 deletions

View File

@@ -12,10 +12,12 @@ import { DefaultRequestPagination } from '@/entities/common/model/types';
export interface AlarmListProps {
appNotificationCategory: string;
appNotificationCategories: Array<any>;
};
export const AlarmList = ({
appNotificationCategory
appNotificationCategory,
appNotificationCategories
}: AlarmListProps) => {
const { navigate } = useNavigate();
const { t } = useTranslation();
@@ -108,6 +110,7 @@ export const AlarmList = ({
appNotificationTitle={ resultList[i]?.appNotificationTitle }
appNotificationContent={ resultList[i]?.appNotificationContent }
appNotificationLink={ resultList[i]?.appNotificationLink }
appNotificationCategories={ appNotificationCategories }
></AlarmItem>
);
}