import React from "react"; import { Button } from "@/components/ui/button"; import { Alert, AlertDescription, AlertTitle } from "@/components/ui/alert"; import { useCheckoutWizard } from "../WizardContext"; interface ConfirmationStepProps { onViewProfile?: () => void; } export const ConfirmationStep: React.FC = ({ onViewProfile }) => { const { selectedPackage } = useCheckoutWizard(); return (
Willkommen bei FotoSpiel Ihr Paket wurde aktiviert. Wir haben Ihnen eine Bestätigung per E-Mail gesendet.
); };