]> git.localhorst.tv Git - alttp.git/blob - resources/js/pages/TwitchLegal.js
basic auto tracking
[alttp.git] / resources / js / pages / TwitchLegal.js
1 import React from 'react';
2 import { Container } from 'react-bootstrap';
3 import { Helmet } from 'react-helmet';
4 import { useTranslation } from 'react-i18next';
5
6 export const Component = () => {
7         const { t } = useTranslation();
8
9         return <Container>
10                 <h1>{t('twitchLegal.heading')}</h1>
11                 <Helmet>
12                         <title>{t('twitchLegal.heading')}</title>
13                 </Helmet>
14                 <p>{t('twitchLegal.p1')}</p>
15                 <p>{t('twitchLegal.p2')}</p>
16         </Container>;
17 };