UNPKG

rn-checkbox-list

Version:

List of checkboxes with select and deselect all option

11 lines (8 loc) 240 B
import React from 'react'; export type ListItem = { id: string | number; name?: string; // Allow additional consumer-provided fields [key: string]: unknown; }; export type RenderItem = (args: {item: ListItem}) => React.ReactNode;