diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/App.svelte | 7 | ||||
-rw-r--r-- | src/index.js | 7 |
2 files changed, 14 insertions, 0 deletions
diff --git a/src/App.svelte b/src/App.svelte new file mode 100644 index 0000000..a273fcc --- /dev/null +++ b/src/App.svelte @@ -0,0 +1,7 @@ +<script></script> + +<div class="app"> + <h2>Level: <input type="number" min="1" max="60" /></h2> +</div> + +<style></style> diff --git a/src/index.js b/src/index.js new file mode 100644 index 0000000..1da4f5c --- /dev/null +++ b/src/index.js @@ -0,0 +1,7 @@ +import App from "./App.svelte"; + +let app = new App({ + target: document.body, +}); + +export default App; |