diff options
| author | Ruben Beltran del Rio <ruben@unlimited.pizza> | 2021-12-20 00:11:18 +0100 |
|---|---|---|
| committer | Ruben Beltran del Rio <ruben@unlimited.pizza> | 2021-12-20 00:11:18 +0100 |
| commit | 92ccd82c73463fa0b67996dc9212e992f90a1454 (patch) | |
| tree | 456f16a2a88c3f9613c9eaf3dcdf3876aa36d689 /src/lib/components | |
| parent | 55fd5e33b1430fd6498f476490da6b5fa6abd70c (diff) | |
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> |