Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | import NiceModal from "@ebay/nice-modal-react";
import GiveBaseModal from "@shared/modals/GiveBaseModal";
import useNiceModal from "@common/Modal/ModalFactory/hooks/useNiceModal";
import { PrivacyContent } from "@pages/Privacy/Privacy";
import GiveText from "@shared/Text/GiveText";
//TODO: to be integrated when new checkout page is ready
const PrivacyModal = NiceModal.create(() => {
const { open, onClose } = useNiceModal();
return (
<GiveBaseModal
open={open}
title="Privacy Policy"
width="600px"
onClose={onClose}
showFooter={false}
>
<GiveText variant="h4" sx={{ paddingBottom: "24px" }}>
GiveCorporation Privacy Policy - United States
</GiveText>
<PrivacyContent />
</GiveBaseModal>
);
});
export default PrivacyModal;
|