options now on svelte too

This commit is contained in:
2020-09-19 01:58:28 +02:00
parent 1bd1913145
commit c7d89a598d
4 changed files with 75 additions and 7 deletions

18
src/shared/index.html Normal file
View File

@@ -0,0 +1,18 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<link href="../../node_modules/spectre.css/dist/spectre.min.css" rel="stylesheet" />
<link href="../../node_modules/tailwindcss/dist/tailwind.css" rel="stylesheet" />
<style>
#root {
width: 100vw;
height: 100vh;
}
</style>
</head>
<body>
<div id="root" />
<script src="./main.js"></script>
</body>
</html>