2017-09-12 20:02:06 +00:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<!-- xlsx.js (C) 2013-present SheetJS http://sheetjs.com -->
|
|
|
|
<!-- vim: set ts=2: -->
|
|
|
|
<html lang="en" style="height: 100%">
|
|
|
|
<head>
|
|
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
|
|
|
|
<title>SheetJS React Demo</title>
|
|
|
|
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" />
|
2021-03-30 22:28:10 +00:00
|
|
|
<script src="https://unpkg.com/@babel/standalone/babel.min.js"></script>
|
|
|
|
<script crossorigin src="https://unpkg.com/react@17/umd/react.production.min.js"></script>
|
|
|
|
<script crossorigin src="https://unpkg.com/react-dom@17/umd/react-dom.production.min.js"></script>
|
2018-02-03 20:46:32 +00:00
|
|
|
<script src="node_modules/xlsx/dist/shim.min.js"></script>
|
2017-12-30 05:40:35 +00:00
|
|
|
<script src="node_modules/xlsx/dist/xlsx.full.min.js"></script>
|
2017-09-12 20:02:06 +00:00
|
|
|
<style>body, #app { height: 100%; };</style>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div class="container-fluid">
|
|
|
|
<h1><a href="http://sheetjs.com">SheetJS React Demo</a></h1>
|
|
|
|
<br />
|
|
|
|
<a href="https://github.com/SheetJS/js-xlsx">Source Code Repo</a><br />
|
|
|
|
<a href="https://github.com/SheetJS/js-xlsx/issues">Issues? Something look weird? Click here and report an issue</a><br /><br />
|
|
|
|
</div>
|
|
|
|
<div id="app" class="container-fluid"></div>
|
2021-03-30 22:28:10 +00:00
|
|
|
<script type="text/babel" src="sheetjs.js"></script>
|
2017-09-12 20:02:06 +00:00
|
|
|
<script type="text/babel">
|
|
|
|
ReactDOM.render( <SheetJSApp />, document.getElementById('app') );
|
|
|
|
</script>
|
|
|
|
</body>
|
|
|
|
</html>
|