import React, { useContext } from 'react'; import Typography from '../../ui/typography/typography'; import { COLORS, TYPOGRAPHY, FONT_WEIGHT, } from '../../../helpers/constants/design-system'; import { I18nContext } from '../../../contexts/i18n'; export default function EditGasDisplayEducation() { const t = useContext(I18nContext); return (
{t('editGasEducationModalIntro')} {t('editGasHigh')} {t('editGasEducationHighExplanation')} {t('editGasMedium')} {t('editGasEducationMediumExplanation')} {t('editGasLow')} {t('editGasEducationLowExplanation')}
); }