diff options
| author | Fuwn <[email protected]> | 2024-07-08 14:45:03 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-07-08 14:45:03 -0700 |
| commit | 5bbb50ec2db0329f0277e7a4f237027497991449 (patch) | |
| tree | 86c32ba5888ff24ce8490088413122bf5a3d0c07 /src/lib/Layout | |
| parent | refactor(SequelCatcher): tidy (diff) | |
| download | due.moe-5bbb50ec2db0329f0277e7a4f237027497991449.tar.xz due.moe-5bbb50ec2db0329f0277e7a4f237027497991449.zip | |
feat(SequelCatcher): formatting
Diffstat (limited to 'src/lib/Layout')
| -rw-r--r-- | src/lib/Layout/Username.svelte | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/lib/Layout/Username.svelte b/src/lib/Layout/Username.svelte new file mode 100644 index 00000000..23c9de8f --- /dev/null +++ b/src/lib/Layout/Username.svelte @@ -0,0 +1,5 @@ +<script lang="ts"> + export let username: string; +</script> + +<a href={`https://anilist.co/user/${username}/`}>@{username}</a> |