JSFiddle - React, Tailwind, and code Playground

HTML

<div contenteditable='true'></div>

CSS

div:empty:before {
    content: 'Type here...';
    color: #ccc;
}

div{
    padding: 4px;
    border: 1px solid #ccc;
}