JSFiddle - React, Tailwind, and code Playground

HTML

<textarea>Text</textarea><span></span>

CSS

textarea + span::after{
    content:"Hello world!";
}

textarea:focus + span::after{
    content:"Goodbye, world!";
}