JSFiddle - React, Tailwind, and code Playground

HTML

<div id="01"><input value="preset value that should get changed"><input value="other preset value that should not get changed"></div>

    
<script>
 document.getElementById('01').getElementsByTagName("input")[0].setAttribute("value", "1");
</script>