UNPKG

@twilio-paste/paste-reakit-fork

Version:

Forked Reakit that addresses SSR hydration issues

9 lines (7 loc) 253 B
import { Item } from "./types"; export function findFirstEnabledItem(items: Item[], excludeId?: string) { if (excludeId) { return items.find((item) => !item.disabled && item.id !== excludeId); } return items.find((item) => !item.disabled); }