Deploy website

Deploy website version based on a0b5cc43a8
This commit is contained in:
Website Deployment Script
2018-06-15 18:44:51 +00:00
parent a0b5cc43a8
commit 01a84eee65
+2 -2
View File
@@ -23,10 +23,10 @@
</code></pre>
<p>Then you can quickly create an app with a home screen and a profile screen:</p>
<pre><code class="hljs"><span class="hljs-keyword">import</span> {
StackNavigator,
createStackNavigator,
} from <span class="hljs-string">'react-navigation'</span>;
const App = StackNavigator({
const App = createStackNavigator({
Home: { screen: HomeScreen },
Profile: { screen: ProfileScreen },
});