From b1549337f3263fecbb81ef3fd3af4e1cb6a700fe Mon Sep 17 00:00:00 2001 From: Spencer Ahrens Date: Tue, 9 Jun 2015 17:18:56 -0700 Subject: [PATCH] [ReactNative][easy] Fix naming in PanResponderExample --- Examples/UIExplorer/PanResponderExample.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Examples/UIExplorer/PanResponderExample.js b/Examples/UIExplorer/PanResponderExample.js index 05ba27cd2..649ea21cb 100644 --- a/Examples/UIExplorer/PanResponderExample.js +++ b/Examples/UIExplorer/PanResponderExample.js @@ -27,7 +27,7 @@ var CIRCLE_COLOR = 'blue'; var CIRCLE_HIGHLIGHT_COLOR = 'green'; -var NavigatorIOSExample = React.createClass({ +var PanResponderExample = React.createClass({ statics: { title: 'PanResponder Sample', @@ -133,4 +133,4 @@ var styles = StyleSheet.create({ }, }); -module.exports = NavigatorIOSExample; +module.exports = PanResponderExample;