rename .html files to .svelte

This commit is contained in:
Rich Harris
2019-02-08 11:40:30 -05:00
parent 84a0ae562f
commit 14ace57612
56 changed files with 1 additions and 1 deletions

View File

@@ -0,0 +1,10 @@
<script>
import { getSession } from '@sapper/app';
const session = getSession();
</script>
<h1>{$session.title}</h1>
<button on:click="{() => session.set({ title: 'changed' })}">
click me
</button>