import PropTypes from "prop-types"; import { motion } from "motion/react"; function FieldError({ text }) { return ( {text} ); } FieldError.propTypes = { text: PropTypes.string.isRequired, }; export default FieldError;