import { Button, Dialog, DialogContent, DialogTitle, IconButton, Typography, } from '@mui/material'; import CloseIcon from '@mui/icons-material/Close'; import XRConfig, {XRConfigProps} from './XRConfig'; import {useState} from 'react'; import './XRDialog.css'; export default function XRDialog(props: XRConfigProps) { const [isDialogOpen, setIsDialogOpen] = useState(false); return ( <> setIsDialogOpen(false)} open={isDialogOpen}> FAIR Seamless Streaming Demo setIsDialogOpen(false)} sx={{ position: 'absolute', right: 8, top: 8, color: (theme) => theme.palette.grey[500], }}> Welcome to the Seamless team streaming demo experience! In this demo you will experience AI powered text and audio translation in real time. ); }