JSFiddle - React, Tailwind, and code Playground

by Alexander Yankovoy

HTML

<textarea placeholder="Начните писать..." ></textarea>

CSS

textarea {padding: 10px; height: 40px;min-height:40px; margin:0px; resize:none; overflow:hidden;}

JavaScript

$('textarea').keyup(function(){
	$(this).height(40);
	$(this).height(this.scrollHeight);
});