JSFiddle - React, Tailwind, and code Playground

HTML

<script src="http://demo.gcpowertools.com.cn/SpreadJS/TutorialSample/external/external/jquery-1.8.2.min.js"></script>
<script src="http://demo.gcpowertools.com.cn/SpreadJS/TutorialSample/external/spreadjs/gcspread.sheets.all.9.40.20153.0.min.js"></script>
<script src="http://demo.gcpowertools.com.cn/spreadjs/ExplorerSample/scripts/resources/zh/gcspread.sheets.resources.zh.9.40.20153.0.min.js"></script>
<link rel="stylesheet" href="http://demo.gcpowertools.com.cn/SpreadJS/TutorialSample/external/spreadjs/css/gcspread.sheets.excel2013white.9.40.20153.0.css">
<body>
    <div class="sample-turtorial">
        <div id="ss" style="width:100%; height:580px;border: 1px solid gray;"></div>
    </div>
</body>

JavaScript

window.onload = function () {
        var spread = new GcSpread.Sheets.Spread(document.getElementById('ss'), { sheetCount: 1 });
        // get spread object
        // var spread = GcSpread.Sheets.findControl(document.getElementById('ss'));
    };