Merge branch 'feature/form_errormassage_component' into 'develop'

Feature/form errormassage component

See merge request witel3/loan-facilities-expert!9
This commit is contained in:
yasaman aliakbari
2023-07-11 07:17:18 +00:00

View File

@@ -0,0 +1,10 @@
import { Typography } from "@mui/material";
const FormErrorMessage = (props) => {
return (
<Typography variant="body2" color="error">
{props.children}
</Typography>
);
};
export default FormErrorMessage;