Update Navbar component to display visit count

This commit is contained in:
Sean Morley
2024-04-02 18:28:14 +00:00
parent 4b2306f812
commit ad568bb3fa
3 changed files with 28 additions and 6 deletions

View File

@@ -0,0 +1,4 @@
import { onMount } from "svelte";
import { writable } from "svelte/store";
export const visitCount = writable(0);