@uiw/react-native
Version:
UIW for React Native
18 lines (17 loc) • 452 B
TypeScript
import React from 'react';
interface TableProps {
data: Array<Object>;
columns: Array<columnsState>;
rowKey: any;
horizontal?: boolean;
style?: Object;
}
interface columnsState {
dataIndex: string;
title: string;
style?: Object;
render?: (record: any) => React.ReactNode;
ellipsis?: boolean;
}
declare const Table: ({ data, columns, rowKey, horizontal, style }: TableProps) => JSX.Element;
export default Table;