1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
<script lang="ts"> import Layout from "./lib/Layout.svelte"; import { LoginForm } from './lib/forms'; import DataView from "./lib/DataView.svelte"; import { authenticated } from "./stores/auth"; </script> <main> <Layout> {#if !$authenticated} <LoginForm /> {:else} <DataView /> {/if} </Layout> </main>