import { Dialog, DialogContent, DialogFooter, DialogSection } from '@ui/components/shadcn/ui/dialog' import { Button } from 'ui' interface Props { visible: boolean onClose: () => void } const AwsMarketplaceOnboardingSuccessModal = ({ visible, onClose }: Props) => { return ( { if (!open) onClose() }} > event.preventDefault()} size="xlarge" hideClose={true} onEscapeKeyDown={(e) => e.preventDefault()} onPointerDownOutside={(e) => e.preventDefault()} >

AWS Marketplace Setup completed

The organization is now managed and billed through AWS Marketplace.

) } export default AwsMarketplaceOnboardingSuccessModal