Select the types of activity you want to include in your feed.
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}