import { PlusIcon } from '@radix-ui/react-icons'; import React from 'react'; import { useTranslation } from 'react-i18next'; import { Button, FlexRow, InputBox, PageContainer, PageHeader, PageTitle, TextBlock, } from '../theme'; export default function TwitchBotCommandsPage(): React.ReactElement { const { t } = useTranslation(); return ( {t('pages.botcommands.title')} {t('pages.botcommands.desc')} ); }