JSFiddle - React, Tailwind, and code Playground

HTML

<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery.mask/1.14.9/jquery.mask.js"></script>
<input type="text" autocomplete="off" class="usd_input" name="dollar_amt">

JavaScript

$(document).ready(function () {
        $('.usd_input').mask('00000.00', { reverse: true });
    });