import React, { Component } from 'react'; import Images from '../../assets/Images'; import { Typography } from '@material-ui/core'; import api from "../../api"; import Constant from '../../library/Constant'; export default class PopUpKonfirmasi extends Component { constructor(props) { super(props) this.state = { } } componentDidMount() { } onClickUpload() { let payload = this.props.data this.props.uploadDocId(payload) } render() { return (
The Document Already Exists in The System,
Do You Want to Overwrite It?
); } }