JSFiddle - React, Tailwind, and code Playground
HTML
<div contenteditable>abc<span></span><span></span></div>
JavaScript
let editor = document.querySelector("div[contenteditable]");
let selection = getSelection();
selection.collapse(editor, 3);
document.execCommand("inserttext", false, " ");