From 01a84eee65f632a1815f0171305e423bb8e4aab9 Mon Sep 17 00:00:00 2001 From: Website Deployment Script Date: Fri, 15 Jun 2018 18:44:51 +0000 Subject: [PATCH] Deploy website Deploy website version based on a0b5cc43a85469c0f65827d216af9edd3f5e3ef4 --- docs/next/navigation.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/next/navigation.html b/docs/next/navigation.html index b530de7bdb3..9db9a3ea9a9 100644 --- a/docs/next/navigation.html +++ b/docs/next/navigation.html @@ -23,10 +23,10 @@

Then you can quickly create an app with a home screen and a profile screen:

import {
-  StackNavigator,
+  createStackNavigator,
 } from 'react-navigation';
 
-const App = StackNavigator({
+const App = createStackNavigator({
   Home: { screen: HomeScreen },
   Profile: { screen: ProfileScreen },
 });