1
0
Fork 0
mirror of https://github.com/plankanban/planka.git synced 2025-07-18 20:59:44 +02:00
planka/client/src/components/DeleteStep/DeleteStep.jsx

31 lines
833 B
React
Raw Normal View History

2019-08-31 04:07:25 +05:00
import React from 'react';
import PropTypes from 'prop-types';
import { Button } from 'semantic-ui-react';
import { Popup } from '../../lib/custom-ui';
import styles from './DeleteStep.module.css';
const DeleteStep = React.memo(({ title, content, buttonContent, onConfirm, onBack }) => (
2019-08-31 04:07:25 +05:00
<>
<Popup.Header onBack={onBack}>{title}</Popup.Header>
<Popup.Content>
<div className={styles.content}>{content}</div>
<Button fluid negative content={buttonContent} onClick={onConfirm} />
</Popup.Content>
</>
));
DeleteStep.propTypes = {
title: PropTypes.string.isRequired,
content: PropTypes.string.isRequired,
buttonContent: PropTypes.string.isRequired,
onConfirm: PropTypes.func.isRequired,
onBack: PropTypes.func,
};
DeleteStep.defaultProps = {
onBack: undefined,
};
export default DeleteStep;