import React from 'react'; import { useTranslation } from 'react-i18next'; import { Dialog, DialogTitle, DialogContent, Grid, Box } from '@mui/material'; import { useTheme } from '@mui/system'; interface Props { open: boolean; onClose: () => void; } const LandingDialog = ({ open, onClose }: Props): JSX.Element => { const { t } = useTranslation(); const theme = useTheme(); return ( {t('Oh... a robot technician has arrived...')} {t('Indeed, but it is my first time. Generate a new workspace and extended token.')} {t('Yup, here are my robots. Drag and drop workspace.json')} ); }; export default LandingDialog;