You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
| 123456789101112131415 |
- import React from 'react';
- import PropTypes from 'prop-types';
- import { Typography } from '@mui/material';
-
- const ErrorMessageComponent = ({ error }) => (
- <Typography variant="body1" color="error" my={2}>
- {error}
- </Typography>
- );
-
- ErrorMessageComponent.propTypes = {
- error: PropTypes.string.isRequired,
- };
-
- export default ErrorMessageComponent;
|