UNPKG

@twilio-paste/paste-reakit-fork

Version:

Forked Reakit that addresses SSR hydration issues

8 lines (7 loc) 155 B
export function flatten<T>(grid: T[][]) { const flattened = [] as T[]; for (const row of grid) { flattened.push(...row); } return flattened; }