import React from 'react'; import { useTranslation } from 'react-i18next'; import { Dialog, DialogTitle, DialogActions, DialogContent, DialogContentText, Button, Link, } from '@mui/material'; interface Props { open: boolean; onClose: () => void; } const LearnDialog = ({ open, onClose }: Props): JSX.Element => { const { t } = useTranslation(); return ( {t('Learn RoboSats')} {t( 'You are about to visit Learn RoboSats. It hosts tutorials and documentation to help you learn how to use RoboSats and understand how it works.', )} ); }; export default LearnDialog;