mirror of
https://github.com/kevin-DL/sapper-template.git
synced 2026-01-15 11:34:45 +00:00
19 lines
241 B
HTML
19 lines
241 B
HTML
<svelte:head>
|
|
<title>Sapper project template</title>
|
|
</svelte:head>
|
|
|
|
{#if $user}
|
|
<Private/>
|
|
{:else}
|
|
<Public/>
|
|
{/if}
|
|
|
|
<script>
|
|
export default {
|
|
components: {
|
|
Private: './_private.html',
|
|
Public: './_public.html',
|
|
},
|
|
}
|
|
</script>
|