JSFiddle - React, Tailwind, and code Playground

by NesterOne

HTML

<script src="http://build-master.jaspersoft.com:5980/jrs-pro-trunk/client/visualize.js?_opt=false"></script>
<div id="report"></div>

CSS

#report {
    height: 600px;
}

JavaScript

visualize({
        auth: {
            name: "superuser",
            password: "superuser"
        }
    },
    function (v) {
        
        v("#report").report({
            resource: "/public/Visualize/IReportBase/crosstab",
            error: function (err) {
                console.log("Report 1: " + err.message);
            }
        });
        
    }
);