Update +page.svelte

This commit is contained in:
Luke Hagar
2023-05-26 10:04:42 -05:00
parent b89b3a5e40
commit 8c548dc336

View File

@@ -1,4 +1,4 @@
<script lang="ts">
<script>
// Docs
import DocsShell from '$lib/DocsShell.svelte';
@@ -21,8 +21,8 @@
'December'
];
let index: any;
let indexValue: any;
let index;
let indexValue;
</script>
<Counter bind:index bind:currentValue={indexValue} values={monthValues} />