JSFiddle - React, Tailwind, and code Playground

HTML

<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.2/jquery.min.js"></script>
<input type="text">
<input type="text">
<input type="text">
<input type="text">

CSS

input {
  height: 50px;
  width: 50px;
  margin: 5px;
}

JavaScript

$(document).ready(function() {
	$("input").on("keypress", function() {
  	$(this).next().focus();
  })
})