mirror of
https://github.com/status-im/react-native.git
synced 2025-02-25 15:45:32 +00:00
Missing braces
Summary: Closes https://github.com/facebook/react-native/pull/9624 Differential Revision: D3791593 Pulled By: hramos fbshipit-source-id: 04bf3eee2d21cf2d5e61de234d5b798acaa9570b
This commit is contained in:
parent
158a73b8a5
commit
2e8d027a9e
@ -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}
|
||||
@ -133,7 +133,7 @@ export default class SimpleNavigationApp extends Component {
|
||||
}}
|
||||
/>
|
||||
)
|
||||
}
|
||||
}}
|
||||
/>
|
||||
)
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user