/* * Copyright OpenSearch Contributors * SPDX-License-Identifier: Apache-2.0 */ import { EuiConfirmModal } from '@elastic/eui'; import React from 'react'; interface DeleteLayerModalProps { onCancel: () => void; onConfirm: () => void; layerName: string; } export const DeleteLayerModal = ({ onCancel, onConfirm, layerName }: DeleteLayerModalProps) => { return (

Do you want to delete layer {layerName}?

); };