hover to show border, and click to edit, click outside to text
import React, { useState, useRef, useEffect, useCallback } from "react";
const EditableText = ({
initialValue = "fffff",
placeholder = "Click to edit...",
className = "",
onChange = () => {},