Type alias DataTableProps

DataTableProps: {
    children: React.ReactNode;
    componentProps?: ViewProps;
    style?: StyleProp<ViewStyle>;
}

Props for DataTable component

Type declaration

  • children: React.ReactNode

    Content of the row. Should be list of DataTableHeader or DataTableRow.

  • Optional componentProps?: ViewProps

    Direct props to set on the React Native component (including iOS and Android specific props). Most use cases should not need this.

  • Optional style?: StyleProp<ViewStyle>

    Style to set on the item

Generated using TypeDoc