JSFiddle - React, Tailwind, and code Playground

HTML

<script src="https://jquery-awesemo-countdown.googlecode.com/git/src/jquery.countdown.js"></script>
<div id="countdown"></div>

JavaScript

$('#countdown').countdown({
    interval : {
        hour   : 1,
        minute : 30,
        second : 59
    },
    callback  : {
        onEnd : function(e) {
            window.location.reload();
        }
    }
});