UNPKG

kolenkainc-honohub-react

Version:

React admin panel for honohub

7 lines (6 loc) 355 B
import { type ColumnType } from "@rafty/corp"; import type { CollectionType } from "../../../types"; export type CollectionDataTable = { columns: ColumnType<unknown>[]; } & Pick<CollectionType, "slug" | "actions">; export declare function CollectionDataTable({ columns, slug, actions, }: CollectionDataTable): import("react/jsx-runtime").JSX.Element;