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