From d89aee60da9e34c7970ec716f9581efa8743ca94 Mon Sep 17 00:00:00 2001 From: Nicolas Charpentier Date: Sat, 21 May 2016 00:09:46 -0700 Subject: [PATCH] Fix tab in Examples/UIExplorer/SwitchExample.js Summary: Closes https://github.com/facebook/react-native/pull/7585 Differential Revision: D3332470 fbshipit-source-id: 660dbb3e635a45cff35583b1a01094ec09ecb6fb --- Examples/UIExplorer/SwitchExample.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Examples/UIExplorer/SwitchExample.js b/Examples/UIExplorer/SwitchExample.js index 02851057370818..19cf72596de660 100644 --- a/Examples/UIExplorer/SwitchExample.js +++ b/Examples/UIExplorer/SwitchExample.js @@ -109,7 +109,7 @@ var EventSwitchExample = React.createClass({ onValueChange={(value) => this.setState({eventSwitchIsOn: value})} style={{marginBottom: 10}} value={this.state.eventSwitchIsOn} /> - {this.state.eventSwitchIsOn ? 'On' : 'Off'} + {this.state.eventSwitchIsOn ? 'On' : 'Off'}