Skip to content

Commit

Permalink
Missing braces
Browse files Browse the repository at this point in the history
Summary: Closes facebook#9624

Differential Revision: D3791593

Pulled By: hramos

fbshipit-source-id: 04bf3eee2d21cf2d5e61de234d5b798acaa9570b
  • Loading branch information
hl3hl3 authored and Facebook Github Bot 4 committed Aug 30, 2016
1 parent 158a73b commit 2e8d027
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/UsingNavigators.md
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ export default class SimpleNavigationApp extends Component {
return (
<Navigator
initialRoute={{ title: 'My Initial Scene', index: 0 }}
renderScene={(route, navigator) =>
renderScene={(route, navigator) => {
return (
<MyScene
title={route.title}
Expand All @@ -133,7 +133,7 @@ export default class SimpleNavigationApp extends Component {
}}
/>
)
}
}}
/>
)
}
Expand Down

0 comments on commit 2e8d027

Please sign in to comment.