JSFiddle - React, Tailwind, and code Playground
HTML
<button>+</button><br><textarea></textarea>
CSS
textarea{
display:none;
}
JavaScript
$('button').click(function(){
$('textarea').show().focus()
})
$('textarea').on('blur', function(){
$(this).hide()
})