-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/feature/SP1' into SP1/#566-cart-…
…page-api
- Loading branch information
Showing
8 changed files
with
52 additions
and
158 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
import ModalPortal from '../ModalPortal'; | ||
import EscapeModalForm from '../EscapeModal/EscapeModalForm'; | ||
|
||
interface DeleteCartModalProps { | ||
setModalOn: React.Dispatch<React.SetStateAction<boolean>>; | ||
} | ||
|
||
const DeleteCartModal = ({ setModalOn }: DeleteCartModalProps) => { | ||
return ( | ||
<ModalPortal> | ||
<EscapeModalForm | ||
onClose={() => setModalOn(false)} | ||
pageName={'CartPage'} | ||
title={'선택한 상품을 삭제하시나요?'} | ||
subTitle={'삭제하시면 결제 대상에서'} | ||
subTitle2={'해당 상품이 제외돼요'} | ||
continueBtn={'삭제하기'} | ||
stopBtn={'그만하기'} | ||
/> | ||
</ModalPortal> | ||
); | ||
}; | ||
|
||
export default DeleteCartModal; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,6 +22,7 @@ const St = { | |
position: fixed; | ||
bottom: 0; | ||
width: 100%; | ||
max-width: 43rem; | ||
height: 7rem; | ||
`, | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters