mirror of
https://github.com/StanGirard/quivr.git
synced 2024-12-19 00:22:14 +03:00
17 lines
387 B
TypeScript
17 lines
387 B
TypeScript
|
import { StripePricingTable } from "./components/PricingTable/PricingTable";
|
||
|
import { Modal } from "../../ui/Modal";
|
||
|
|
||
|
type StripePricingModalProps = {
|
||
|
Trigger: JSX.Element;
|
||
|
};
|
||
|
|
||
|
export const StripePricingModal = ({
|
||
|
Trigger,
|
||
|
}: StripePricingModalProps): JSX.Element => {
|
||
|
return (
|
||
|
<Modal Trigger={Trigger} CloseTrigger={<div />}>
|
||
|
<StripePricingTable />
|
||
|
</Modal>
|
||
|
);
|
||
|
};
|