33 lines
1.1 KiB
HTML
33 lines
1.1 KiB
HTML
|
|
<!DOCTYPE html>
|
||
|
|
<html lang="en">
|
||
|
|
<head>
|
||
|
|
<meta charset="UTF-8"/>
|
||
|
|
<meta content="width=device-width, initial-scale=1.0" name="viewport"/>
|
||
|
|
<title>CSV Tool</title>
|
||
|
|
<link rel="stylesheet" href="./src/style.css"/>
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<div id="app">
|
||
|
|
<div id="toolbar">
|
||
|
|
<div id="cell-ref"></div>
|
||
|
|
<input type="text" id="formula-bar" placeholder="Select a cell to edit" />
|
||
|
|
</div>
|
||
|
|
<div id="table-container" style="--wails-drop-target:drop">
|
||
|
|
<table id="csv-table">
|
||
|
|
<thead id="table-head"></thead>
|
||
|
|
<tbody id="table-body"></tbody>
|
||
|
|
</table>
|
||
|
|
</div>
|
||
|
|
<div id="status-bar">
|
||
|
|
<span id="status-text">Ready</span>
|
||
|
|
</div>
|
||
|
|
<div id="command-palette" class="hidden">
|
||
|
|
<input type="text" id="command-input" placeholder="Type a command..." />
|
||
|
|
<div id="command-list"></div>
|
||
|
|
</div>
|
||
|
|
<div id="overlay" class="hidden"></div>
|
||
|
|
</div>
|
||
|
|
<script src="./src/main.js" type="module"></script>
|
||
|
|
</body>
|
||
|
|
</html>
|