8 changed files with 113 additions and 18 deletions
|
Before Width: | Height: | Size: 9.0 KiB After Width: | Height: | Size: 8.3 KiB |
|
After Width: | Height: | Size: 13 KiB |
|
After Width: | Height: | Size: 8.3 KiB |
@ -0,0 +1,18 @@ |
|||||||
|
<script lang="ts"> |
||||||
|
import { |
||||||
|
checkForNip07Plugin, |
||||||
|
logged_in_user, |
||||||
|
login, |
||||||
|
nip07_plugin, |
||||||
|
} from "$lib/stores/users"; |
||||||
|
import { onMount } from "svelte"; |
||||||
|
import Navbar from "$lib/components/Navbar.svelte"; |
||||||
|
|
||||||
|
onMount(checkForNip07Plugin); |
||||||
|
</script> |
||||||
|
|
||||||
|
<Navbar |
||||||
|
logged_in_user={$logged_in_user} |
||||||
|
nip07_plugin={$nip07_plugin} |
||||||
|
login_function={login} |
||||||
|
/> |
||||||
Loading…
Reference in new issue