JSFiddle - React, Tailwind, and code Playground

HTML

<header>header</header>

JavaScript

$("header").on('dblclick', function() {
    $(this).prop('contenteditable', true);
    window.getSelection().removeAllRanges();
    $(this).focus();
});