@cn-ui/core
Version:
The @cn-ui/core is a collection of UI components and utilities for building modern web applications with SolidJS.
6 lines (5 loc) • 416 B
TypeScript
import { type RowData, type TableOptions } from "@cn-ui/table-core";
import type { JSX } from "solid-js";
export * from "@cn-ui/table-core";
export declare function flexRender<TProps>(Comp: ((props: TProps) => JSX.Element) | JSX.Element | undefined, props: TProps): JSX.Element;
export declare function createSolidTable<TData extends RowData>(options: TableOptions<TData>): import("@cn-ui/table-core").Table<TData>;