From 44ab559eb16da9d1a3ad4d6b6a94b640c1cd47b5 Mon Sep 17 00:00:00 2001 From: YouROK <8yourok8@mail.ru> Date: Wed, 22 Sep 2021 14:30:20 +0300 Subject: [PATCH] add qiwi --- web/src/components/Donate/DonateDialog.jsx | 53 +++++++++++----------- 1 file changed, 27 insertions(+), 26 deletions(-) diff --git a/web/src/components/Donate/DonateDialog.jsx b/web/src/components/Donate/DonateDialog.jsx index 78b2c05..d29c34c 100644 --- a/web/src/components/Donate/DonateDialog.jsx +++ b/web/src/components/Donate/DonateDialog.jsx @@ -9,34 +9,35 @@ import Button from '@material-ui/core/Button' import { useTranslation } from 'react-i18next' const donateFrame = - '' + '' export default function DonateDialog({ onClose }) { - const { t } = useTranslation() + const { t } = useTranslation() - return ( - - {t('Donate')} - - - - - - - - - - {/* eslint-disable-next-line react/no-danger */} -
- - - + return ( + + {t('Donate')} + + + + + + + + + + + {/* eslint-disable-next-line react/no-danger */} +
+ + + - - - -
- ) + + + +
+ ) }