From 969c5201268a68d063bf91cf7df4c17b22193071 Mon Sep 17 00:00:00 2001 From: Dale Jefferson Date: Fri, 22 Jan 2016 14:20:16 -0800 Subject: [PATCH] Use renderSeparator in List View Example Summary: Closes https://github.com/facebook/react-native/pull/5443 Reviewed By: svcscm Differential Revision: D2856259 Pulled By: androidtrunkagent fb-gh-sync-id: 68b4f5d16c852bbf06cd65346c32b8c6d3f2d36c --- Examples/UIExplorer/ListViewExample.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Examples/UIExplorer/ListViewExample.js b/Examples/UIExplorer/ListViewExample.js index 420ed6ef7..c4df7c7a9 100644 --- a/Examples/UIExplorer/ListViewExample.js +++ b/Examples/UIExplorer/ListViewExample.js @@ -57,6 +57,7 @@ var ListViewSimpleExample = React.createClass({ dataSource={this.state.dataSource} renderRow={this._renderRow} renderScrollComponent={props => } + renderSeparator={(sectionID, rowID) => } /> ); @@ -74,7 +75,6 @@ var ListViewSimpleExample = React.createClass({ {rowData + ' - ' + LOREM_IPSUM.substr(0, rowHash % 301 + 10)} - );