import { Box, Button, Typography } from '@mui/material' import { CheckCircle } from 'lucide-react' import { DS_TEXT } from '../../lib/ds' interface Props { onViewListings: () => void onCreateAnother: () => void } export function CreatedScreen({ onViewListings, onCreateAnother }: Props) { return ( Inserat erstellt Das Inserat wurde veröffentlicht und ist für passende Suchanfragen sichtbar. ) }