Last active
September 4, 2019 11:34
-
-
Save kaungmyatlwin/07de346cb3e5b796296b39291bbab4fb to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React, { useState, useRef, useEffect } from "react"; | |
const EditableInput = props => { | |
return ( | |
<React.Fragment> | |
<input /> | |
<span></span> | |
</React.Fragment> | |
); | |
}; | |
export default EditableInput; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment