X-Git-Url: https://git.localhorst.tv/?a=blobdiff_plain;f=resources%2Fjs%2Fpages%2FTwitchLegal.js;fp=resources%2Fjs%2Fpages%2FTwitchLegal.js;h=197a5cb6de900123be2faf10113d62165555e329;hb=2ba39c5f4632579146d2663d82149a156a4e96c1;hp=0000000000000000000000000000000000000000;hpb=5182e5f12b7ba95d54c5be68c357f799b84561b6;p=alttp.git diff --git a/resources/js/pages/TwitchLegal.js b/resources/js/pages/TwitchLegal.js new file mode 100644 index 0000000..197a5cb --- /dev/null +++ b/resources/js/pages/TwitchLegal.js @@ -0,0 +1,17 @@ +import React from 'react'; +import { Container } from 'react-bootstrap'; +import { Helmet } from 'react-helmet'; +import { useTranslation } from 'react-i18next'; + +export const Component = () => { + const { t } = useTranslation(); + + return +

{t('twitchLegal.heading')}

+ + {t('twitchLegal.heading')} + +

{t('twitchLegal.p1')}

+

{t('twitchLegal.p2')}

+
; +};