Add ui scaffolding

This commit is contained in:
Daniel Lundin
2019-06-06 19:48:24 +02:00
parent a7dde97c47
commit e0e60f321f
14 changed files with 3246 additions and 14 deletions
+11
View File
@@ -0,0 +1,11 @@
<script>
export let name;
</script>
<style>
h1 {
color: purple;
}
</style>
<h1>Hello {name}!</h1>
+10
View File
@@ -0,0 +1,10 @@
import App from './App.svelte';
const app = new App({
target: document.body,
props: {
name: 'Wireguard'
}
});
export default app;