import React from 'react'; import { IonButton, IonIcon } from '@ionic/react'; import { sparklesOutline } from 'ionicons/icons'; interface EmptyStateProps { title: string; message: string; actionLabel: string; onAction: () => void; } const EmptyState: React.FC = ({ title, message, actionLabel, onAction, }) => { return (

{title}

{message}

{actionLabel}
); }; export default EmptyState;