import React from 'react'; import { Modal, Text, Button, Group, Stack } from '@mantine/core'; const DeleteUserModal = ({ opened, onClose, onConfirm, user, loading }) => ( Are you sure you want to delete user "{user?.email}"? This action cannot be undone and all associated data will be permanently deleted. ); export default DeleteUserModal;