aboutsummaryrefslogtreecommitdiff
path: root/ui/src/routes/+page.svelte
blob: fae229e4e015bd7da8dfc7aa7fc89a087d777b16 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<script>
    import Login from './login/+page.svelte';
    import View from './list/+page.svelte';
</script>

<h1>Simple Pastebin</h1>


<!-- <Login /> -->
<p>
    Below is a listing of recent pastes:
</p>

<View />