crazy chatgpt working on tablemaps

This commit is contained in:
zadit frontend
2024-07-31 17:31:33 +00:00
parent b32fc0d45d
commit a768324553
5 changed files with 239 additions and 7 deletions

View File

@@ -1,5 +1,6 @@
import React from "react";
import styles from "./Modal.module.css";
import TableMaps from "../components/TableMaps";
const Modal = ({ isOpen, onClose, children }) => {
if (!isOpen) return null;
@@ -23,6 +24,7 @@ const Modal = ({ isOpen, onClose, children }) => {
<button onClick={onClose} className={styles.closeButton}>
Close
</button>
<TableMaps />
</div>
</div>
);