Fix typo on example code

Summary: Closes https://github.com/facebook/react-native/pull/2828

Reviewed By: @​svcscm

Differential Revision: D2457233

Pulled By: @foghina
This commit is contained in:
alantrrs 2015-09-18 10:27:33 -07:00 committed by facebook-github-bot-7
parent b6cb0e1246
commit c6495531fb
1 changed files with 2 additions and 2 deletions

View File

@ -57,8 +57,8 @@ var DRAWER_STATES = [
* drawerWidth={300}
* drawerPosition={DrawerLayoutAndroid.positions.Left}
* renderNavigationView={() => navigationView}>
* <Text style={{10, fontSize: 15, textAlign: 'right'}}>Hello</Text>
* <Text style={{10, fontSize: 15, textAlign: 'right'}}>World!</Text>
* <Text style={{margin: 10, fontSize: 15, textAlign: 'right'}}>Hello</Text>
* <Text style={{margin: 10, fontSize: 15, textAlign: 'right'}}>World!</Text>
* </DrawerLayoutAndroid>
* );
* },