JSFiddle - React, Tailwind, and code Playground

by Justin

HTML

<textarea></textarea>

JavaScript

$('textarea').keypress(function(e) {
    if(e.which == 13) {
        e.preventDefault();
        $('textarea').val('').focus();
    }
})