UNPKG

@tohuhono/puck-blocks

Version:

A collection of puck components for building pages in OberonCMS

10 lines 374 B
import { type ColumnDef } from "../../hooks/use-table"; export type Payment = { id: string; amount: number; status: "pending" | "processing" | "success" | "failed"; email: string; }; export declare const columns: ColumnDef<Payment>[]; export declare function CardsDataTable(): import("react/jsx-runtime").JSX.Element; //# sourceMappingURL=data-table.d.ts.map