@uiw/react-native
Version:
UIW for React Native
16 lines (15 loc) • 393 B
TypeScript
import React from 'react';
interface BodyRowProps {
columns: Array<columnsState>;
record: Object | any;
style?: Object;
}
interface columnsState {
dataIndex: string;
title: string;
style?: Object;
render?: (record: any) => React.ReactNode;
ellipsis?: boolean;
}
export default function BodyRow({ columns, record, style }: BodyRowProps): JSX.Element;
export {};