- What's your github username?
+ What's your github username?
{
+ setIntroduction(e.target.value);
+ };
+
+ const handleBlur = () => {
+ setUserIntroduction(introduction);
+ };
+
+ return (
+
+
👋 Tell me about yourself
+
+
+ );
+}
+
+Introduce.propTypes = {
+ setUserIntroduction: PropTypes.func.isRequired,
+};
+
+export default Introduce;