quivr/frontend/lib/components/Stripe/PricingModal/StripePricingModal.tsx
Stan Girard 7fee286baa
feat(payment): added modal of right size (#1860)
# Description

Please include a summary of the changes and the related issue. Please
also include relevant motivation and context.

## Checklist before requesting a review

Please delete options that are not relevant.

- [ ] My code follows the style guidelines of this project
- [ ] I have performed a self-review of my code
- [ ] I have commented hard-to-understand areas
- [ ] I have ideally added tests that prove my fix is effective or that
my feature works
- [ ] New and existing unit tests pass locally with my changes
- [ ] Any dependent changes have been merged

## Screenshots (if appropriate):
2023-12-11 17:27:44 +01:00

17 lines
394 B
TypeScript

import { StripePricingTable } from "./components/PricingTable/PricingTable";
import { Modal } from "../../ui/ModalPayment";
type StripePricingModalProps = {
Trigger: JSX.Element;
};
export const StripePricingModal = ({
Trigger,
}: StripePricingModalProps): JSX.Element => {
return (
<Modal Trigger={Trigger} CloseTrigger={<div />}>
<StripePricingTable />
</Modal>
);
};