diff options
Diffstat (limited to 'src/lib/components')
| -rw-r--r-- | src/lib/components/lgtm.svelte | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/lib/components/lgtm.svelte b/src/lib/components/lgtm.svelte new file mode 100644 index 0000000..1d97e3f --- /dev/null +++ b/src/lib/components/lgtm.svelte @@ -0,0 +1,16 @@ +<script> + import { getLGTM } from '$lib/stores/lgtm'; + + $: lgtm = getLGTM(); +</script> + +<div id="lgtm"> + <p> + {$lgtm.l}<br> + {$lgtm.g} <br> + {$lgtm.t}<br> + {$lgtm.m}<br> + <br> + {$lgtm.emoji} + </p> +</div> |