import * as React from "react"; import { Box, Modal, Fade, Backdrop, Typography, Button } from "@mui/material"; import theme from "../../theme"; const ModalWindow: React.FC = () => { const [open, setOpen] = React.useState(false); const handleOpen = () => setOpen(true); const handleClose = () => setOpen(false); return ( Проект СТАТИСТИКА ТРЕКЕРЫ УСТРОЙСТВ ВВОДЫ ВЫВОДЫ Long text Long text Long text Long text Long text Long text Long text Long text Long text Long text Long text Long text Long text ); } export default ModalWindow;