UNPKG

@arkhas/inertia-datatable

Version:

A Laravel Inertia React Datatable component

10 lines (9 loc) 347 B
import React from 'react'; interface CheckboxColumnProps { columnKey: string; row: Record<string, React.ReactNode | string | number | boolean | null>; isRowSelected: (rowId: number | string) => boolean; onSelectRow: (rowId: number | string) => void; } export declare const CheckboxColumn: React.FC<CheckboxColumnProps>; export {};