/
dropdead
/
frontend_trainee
Обзор
Документация
Войти
/
dropdead
/
frontend_trainee
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/components/common/error.tsx
20 строк
394 B
Ivan
feat: ad page, editing, patch hook, some fixes
09 сен 2024, 18:05
09 сен 2024, 18:05
ffce551
Код
Авторство
О чём код?
import { Box, Typography } from '@mui/material'; type ErrorProps = { error: { message: string }; }; export const Error = ({ error }: ErrorProps) => { return ( <Box display="flex" justifyContent="center" alignItems="center" height="100vh" > <Typography variant="h6" color="error"> Error: {error.message} </Typography> </Box> ); };