1 import React from 'react';
2 import { Container } from 'react-bootstrap';
3 import { Helmet } from 'react-helmet';
4 import { useTranslation } from 'react-i18next';
6 export const Component = () => {
7 const { t } = useTranslation();
10 <h1>{t('twitchLegal.heading')}</h1>
12 <title>{t('twitchLegal.heading')}</title>
14 <p>{t('twitchLegal.p1')}</p>
15 <p>{t('twitchLegal.p2')}</p>