16 lines
495 B
HTML
16 lines
495 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>Spreadsheet example</title>
|
|
</head>
|
|
<body style="padding: 2rem">
|
|
<div id="spreadsheet"></div>
|
|
<button id="save_button">Save sheet</button>
|
|
<button id="load_button">Load sheet</button>
|
|
<script type="module" src="/src/index.ts"></script>
|
|
</body>
|
|
</html>
|