JSFiddle - React, Tailwind, and code Playground

by stovberpv

JavaScript

document.querySelector('.input').addEventListener('keyup', function(e){
	if (e.key !== 'Enter') {
    return;
  }
  
  
});