aboutsummaryrefslogtreecommitdiff
path: root/frontend/src/components/MapDeleteConfirmDialog.tsx
diff options
context:
space:
mode:
authorWolfboy248 <105884620+Wolfboy248@users.noreply.github.com>2024-10-20 00:27:38 +0200
committerWolfboy248 <105884620+Wolfboy248@users.noreply.github.com>2024-10-20 00:27:38 +0200
commit8c8edfc9c8bb1a0fa3d1e02aab576044857f1c95 (patch)
treecf23b52befb9af6d16321b9e9031ace724543875 /frontend/src/components/MapDeleteConfirmDialog.tsx
parentbackend: actually fix download demo (diff)
downloadlphub-8c8edfc9c8bb1a0fa3d1e02aab576044857f1c95.tar.gz
lphub-8c8edfc9c8bb1a0fa3d1e02aab576044857f1c95.tar.bz2
lphub-8c8edfc9c8bb1a0fa3d1e02aab576044857f1c95.zip
refactor: custom modals
Diffstat (limited to '')
-rw-r--r--frontend/src/components/MapDeleteConfirmDialog.tsx28
1 files changed, 0 insertions, 28 deletions
diff --git a/frontend/src/components/MapDeleteConfirmDialog.tsx b/frontend/src/components/MapDeleteConfirmDialog.tsx
deleted file mode 100644
index 1518a14..0000000
--- a/frontend/src/components/MapDeleteConfirmDialog.tsx
+++ /dev/null
@@ -1,28 +0,0 @@
1import React from 'react';
2
3import "../css/MapDeleteConfirmDialog.css"
4
5interface MapDeleteConfirmDialogProps {
6 open: boolean;
7 onClose: () => void;
8 map_id: number;
9 record_id: number;
10};
11
12const MapDeleteConfirmDialog: React.FC<MapDeleteConfirmDialogProps> = ({ open, onClose, map_id, record_id }) => {
13 if (open) {
14 return (
15 <div className='dimmer'>
16 <div>
17
18 </div>
19 </div>
20 )
21 }
22
23 return (
24 <></>
25 )
26};
27
28export default MapDeleteConfirmDialog;