init
This commit is contained in:
commit
d761a10bf7
102 changed files with 4761 additions and 0 deletions
11
lib/components/bio/profile/Footer.svelte
Normal file
11
lib/components/bio/profile/Footer.svelte
Normal file
|
@ -0,0 +1,11 @@
|
|||
<script lang="ts">
|
||||
export let uid: number | null | undefined = undefined;
|
||||
export let views: number | null | undefined = undefined;
|
||||
</script>
|
||||
|
||||
{#if (uid || views) && uid !== -1}
|
||||
<div class="border-t border-text-secondary pt-1 flex justify-between text-text-secondary text-xs">
|
||||
{#if uid}<p>UID: {uid === -2 ? '??' : uid}</p>{/if}
|
||||
{#if views}<p>VIEWS: {views}</p>{/if}
|
||||
</div>
|
||||
{/if}
|
Loading…
Add table
Add a link
Reference in a new issue