move twemoji menu to svelte

This commit is contained in:
Lurkars 2021-09-10 16:57:21 +02:00
parent b50253a529
commit e553392d9d
7 changed files with 132 additions and 138 deletions

View file

@ -0,0 +1,4 @@
import { writable } from "svelte/store";
export const emoteStore = writable<string | null>(null);
export const emoteMenuStore = writable(false);