import React from "react"; import Modal from "components/modals/Modal"; import Button from "components/buttons/Button"; const baseClass = "remove-scheduled-query-modal"; interface IRemoveScheduledQueryModalProps { onCancel: () => void; onSubmit: () => void; } const RemoveScheduledQueryModal = ( props: IRemoveScheduledQueryModalProps ): JSX.Element => { const { onCancel, onSubmit } = props; return (
Are you sure you want to remove the selected queries from the schedule?
); }; export default RemoveScheduledQueryModal;