2024-05-13 05:44:32 +02:00
|
|
|
import type { Emoji } from "~/types/mastodon/emoji";
|
|
|
|
|
|
2024-05-17 08:25:59 +02:00
|
|
|
export const useCustomEmojis = () => {
|
2024-05-13 05:44:32 +02:00
|
|
|
// Cache in localStorage
|
|
|
|
|
return useLocalStorage<Emoji[]>("lysand:custom_emojis", []);
|
|
|
|
|
};
|