import * as React from 'react'; import Modal from '@mui/material/Modal'; import Typography from '@mui/material/Typography'; import Box from '@mui/material/Box'; export default function ServerModal() { const rootRef = React.useRef(null); return ( rootRef.current} > ({ position: 'relative', width: 400, bgcolor: 'background.paper', border: '2px solid #000', boxShadow: theme.shadows[5], p: 4, })} > Server-side modal If you disable JavaScript, you will still see me. ); }