aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/components/MapDeleteConfirmDialog.tsx
blob: 1518a14d0cc9efec2832e61b7fa283c86d7f0e72 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
import React from 'react';

import "../css/MapDeleteConfirmDialog.css"

interface MapDeleteConfirmDialogProps {
    open: boolean;
    onClose: () => void;
    map_id: number;
    record_id: number;
};

const MapDeleteConfirmDialog: React.FC<MapDeleteConfirmDialogProps> = ({ open, onClose, map_id, record_id }) => {
    if (open) {
        return (
            <div className='dimmer'>
                <div>
    
                </div>
            </div>
        )
    }
    
    return (
        <></>
    )
};

export default MapDeleteConfirmDialog;