robosats/frontend/src/components/Dialogs/Learn.tsx

51 lines
1.1 KiB
TypeScript
Raw Normal View History

2022-05-08 22:07:49 +00:00
import React from "react";
import { useTranslation } from "react-i18next";
import {
Dialog,
DialogTitle,
DialogActions,
DialogContent,
DialogContentText,
Button,
Link,
2022-05-08 22:07:49 +00:00
} from "@mui/material"
type Props = {
open: boolean;
onClose: () => void;
}
const LearnDialog = ({
2022-05-08 22:07:49 +00:00
open,
onClose,
}: Props): JSX.Element => {
const { t } = useTranslation();
return (
<Dialog
open={open}
onClose={onClose}
>
<DialogTitle>
{t("Tutorials and Documentation")}
2022-05-08 22:07:49 +00:00
</DialogTitle>
<DialogContent>
<DialogContentText>
{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.")}
2022-05-08 22:07:49 +00:00
</DialogContentText>
</DialogContent>
<DialogActions>
<Button onClick={onClose}>{t("Back")}</Button>
<Button onClick={onClose} autoFocus component={Link} href="https://learn.robosats.com" target="_blank">
{t("Let's go!")}
</Button>
2022-05-08 22:07:49 +00:00
</DialogActions>
</Dialog>
)
}
export default LearnDialog;