UNPKG

@twilio-paste/paste-reakit-fork

Version:

Forked Reakit that addresses SSR hydration issues

7 lines (5 loc) 203 B
import { Item } from "./types"; export function findEnabledItemById(items: Item[], id?: string | null) { if (!id) return undefined; return items?.find((item) => item.id === id && !item.disabled); }