JSFiddle - React, Tailwind, and code Playground

HTML

<textarea></textarea>

JavaScript

$("textarea").keydown(function(e){
    if (e.keyCode == 13 && !e.shiftKey)
    {
        e.preventDefault();
    }
});