Skip to content

Instantly share code, notes, and snippets.

@kaungmyatlwin
Last active September 4, 2019 11:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kaungmyatlwin/07de346cb3e5b796296b39291bbab4fb to your computer and use it in GitHub Desktop.
Save kaungmyatlwin/07de346cb3e5b796296b39291bbab4fb to your computer and use it in GitHub Desktop.
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