import React from 'react'; import { Modal, Text, Button, Group, Stack } from '@mantine/core'; const DeleteWorkspaceModal = ({ opened, onClose, onConfirm, workspaceName, }) => ( Are you sure you want to delete workspace "{workspaceName}"? This action cannot be undone and all files in this workspace will be permanently deleted. ); export default DeleteWorkspaceModal;