/
SOFG1
/
generic
Обзор
Документация
Войти
/
SOFG1
/
generic
Код
Запросы
0
Задачи
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
src/components/common/ErrorFallbackComponent/ErrorFallbackComponent.tsx
16 строк
327 B
Eddy
initial commit
22 июл 2024, 17:06
22 июл 2024, 17:06
a72fa2b
Код
Авторство
О чём код?
import { useTranslation } from "react-i18next" import styled from "styled-components" const StyledMessage = styled.p` padding: 10px; ` const ErrorFallbackComponent = () => { const { t } = useTranslation() return <StyledMessage>{t("error_boundary_fallback")}</StyledMessage> } export default ErrorFallbackComponent