JSFiddle - React, Tailwind, and code Playground

HTML

<script src="https://getfirebug.com/firebug-lite-debug.js"></script>

JavaScript

$(function() {
    function GetG5Status3() {
        return $.get('/echo/json/');
    }
    
    GetG5Status3().done(function(response) {
        console.log('done')
        console.log(response)
    })
});