Skip to content

Commit

Permalink
Fix tab in Examples/UIExplorer/SwitchExample.js
Browse files Browse the repository at this point in the history
Summary: Closes facebook#7585

Differential Revision: D3332470

fbshipit-source-id: 660dbb3e635a45cff35583b1a01094ec09ecb6fb
  • Loading branch information
charpeni authored and samerce committed Aug 23, 2016
1 parent be8f446 commit d89aee6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Examples/UIExplorer/SwitchExample.js
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ var EventSwitchExample = React.createClass({
onValueChange={(value) => this.setState({eventSwitchIsOn: value})}
style={{marginBottom: 10}}
value={this.state.eventSwitchIsOn} />
<Text>{this.state.eventSwitchIsOn ? 'On' : 'Off'}</Text>
<Text>{this.state.eventSwitchIsOn ? 'On' : 'Off'}</Text>
</View>
<View>
<Switch
Expand Down

0 comments on commit d89aee6

Please sign in to comment.