import React from 'react'; import { useI18nContext } from '../../../hooks/useI18nContext'; import Box from '../../ui/box/box'; import Typography from '../../ui/typography/typography'; import { TYPOGRAPHY, COLORS, BLOCK_SIZES, DISPLAY, } from '../../../helpers/constants/design-system'; import { BETA_BUGS_URL } from '../../../helpers/constants/beta'; import { hideBetaHeader } from '../../../store/actions'; const BetaHeader = () => { const t = useI18nContext(); return ( {t('betaHeaderText', [ {t('here')} , ])} ); }; export default BetaHeader;