UNPKG

emoji-picker-react

Version:

Emoji Picker component for React Applications on the web

12 lines (8 loc) 265 B
import { useCustomEmojisConfig } from '../config/useConfig'; export function useShouldHideCustomEmojis() { const customCategoryConfig = useCustomEmojisConfig(); if (!customCategoryConfig) { return false; } return customCategoryConfig.length === 0; }