import React, { Component } from 'react'; import Images from '../assets/Images'; import { Typography } from '@material-ui/core'; export default class PopUpDelete extends Component { render() { return (
{this.props.intent === 'parameter' ? `Delete [${this.props.rowData[2]}, ${this.props.rowData[3]}, ${this.props.rowData[4]}, ${this.props.rowData[7] === "" ? this.props.rowData[8] + ' + ' + this.props.rowData[9] : this.props.rowData[7]}]?` : `Delete ${this.props.name}?` }
); } }