Bluesky app fork with some witchin' additions 馃挮
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at a876aae44ea07494ebea9727350aa060b81f317b 12 lines 269 B view raw
1import {useCallback} from 'react' 2 3import {getEmojis} from './getEmojis' 4 5let emojis: Awaited<ReturnType<typeof getEmojis>> | null = null 6 7export function useGetEmojis() { 8 return useCallback(async () => { 9 emojis ??= await getEmojis() 10 return emojis 11 }, []) 12}