Files
sapper-template/routes/index.html
2018-09-24 20:22:12 -06:00

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>