({ children, style, ...rest }: Props)
| 109 | * ``` |
| 110 | */ |
| 111 | const DataTable = ({ children, style, ...rest }: Props) => ( |
| 112 | <View {...rest} style={[styles.container, style]}> |
| 113 | {children} |
| 114 | </View> |
| 115 | ); |
| 116 | |
| 117 | // @component ./DataTableHeader.tsx |
| 118 | DataTable.Header = DataTableHeader; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…