Add journal frontend

This commit is contained in:
Martin Pander
2022-11-09 21:05:20 +01:00
parent 82f062b831
commit d9b92ab4e9
59 changed files with 3870 additions and 106 deletions

View File

@ -0,0 +1,10 @@
<script lang="ts">
let count: number = 0
const increment = () => {
count += 1
}
</script>
<button on:click={increment}>
count is {count}
</button>