Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
| 1234567891011121314 |
- import { Typography } from '@mui/material';
- import React from 'react';
-
- interface IProps {
- error: string;
- }
-
- const ErrorMessageComponent: React.FC<IProps> = ({ error }) => (
- <Typography variant="body1" color="error" my={2}>
- {error}
- </Typography>
- );
-
- export default ErrorMessageComponent;
|