+
서비스 이용, 수수료 및 정산주기
{ getList(PaymentInfoItemType.Comission) }
@@ -92,7 +101,10 @@ export const InfoWrap = ({
{ getList(PaymentInfoItemType.NoInterest) }
-
+
>
);
};
\ No newline at end of file
diff --git a/src/entities/payment/ui/no-interest-info-bottom-sheet.tsx b/src/entities/payment/ui/no-interest-info-bottom-sheet.tsx
index 5450700..618c226 100644
--- a/src/entities/payment/ui/no-interest-info-bottom-sheet.tsx
+++ b/src/entities/payment/ui/no-interest-info-bottom-sheet.tsx
@@ -1,11 +1,32 @@
+import { motion } from 'framer-motion';
import { IMAGE_ROOT } from '@/shared/constants/common';
+import { BottomSheetMotionVaiants, BottomSheetMotionDuration } from '@/entities/common/model/constant';
-export const NoInterestInfoBottomSheet = () => {
+export interface NoInterestInfoBottomSheetProps {
+ noInterestInfoBottomSheetOn: boolean;
+ setNoInterestInfoBottomSheetOn: (noInterestInfoBottomSheetOn: boolean) => void;
+};
- return (
+export const NoInterestInfoBottomSheet = ({
+ noInterestInfoBottomSheetOn,
+ setNoInterestInfoBottomSheetOn
+}: NoInterestInfoBottomSheetProps) => {
+ const onClickToClose = () => {
+ // close
+ setNoInterestInfoBottomSheetOn(false);
+ };
+ return (
<>
-
-
+ { noInterestInfoBottomSheetOn &&
+
+ }
+
무이자 정보
@@ -16,6 +37,7 @@ export const NoInterestInfoBottomSheet = () => {

onClickToClose() }
/>
@@ -38,15 +60,7 @@ export const NoInterestInfoBottomSheet = () => {
적용기간 : 2025.06.01 ~ 9999.12.31
적용금액 : 50,000
- {/*
-
-
-
- */}
-
+
>
)
};
\ No newline at end of file
diff --git a/src/pages/payment/info/info-page.tsx b/src/pages/payment/info/info-page.tsx
index 5577318..4926f96 100644
--- a/src/pages/payment/info/info-page.tsx
+++ b/src/pages/payment/info/info-page.tsx
@@ -79,7 +79,7 @@ export const InfoPage = () => {
return (
<>
-