JSFiddle - React, Tailwind, and code Playground
HTML
<div id="calculator">
Income$<input id="income" pattern="^\d+((\.|\,)\d{2})?$"/>
</div>
CSS
body{ padding:40px}
JavaScript
$("#calculator").dialog({
title: "Please enter the following information",
width: 500
});
$("#income").change(function(event){
console.log(event);
});