From 2e8d027a9e8cd693b67332ef0464deda65751439 Mon Sep 17 00:00:00 2001 From: hl3hl3 Date: Tue, 30 Aug 2016 09:41:47 -0700 Subject: [PATCH] Missing braces Summary: Closes https://github.com/facebook/react-native/pull/9624 Differential Revision: D3791593 Pulled By: hramos fbshipit-source-id: 04bf3eee2d21cf2d5e61de234d5b798acaa9570b --- docs/UsingNavigators.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/UsingNavigators.md b/docs/UsingNavigators.md index 5c9e635a3b2..19513116aeb 100644 --- a/docs/UsingNavigators.md +++ b/docs/UsingNavigators.md @@ -111,7 +111,7 @@ export default class SimpleNavigationApp extends Component { return ( + renderScene={(route, navigator) => { return ( ) - } + }} /> ) }