diff --git a/docs/next/getting-started.html b/docs/next/getting-started.html index 6576999209b..e3f2a4fd79a 100644 --- a/docs/next/getting-started.html +++ b/docs/next/getting-started.html @@ -128,7 +128,7 @@
expo init AwesomeProject
 
 cd AwesomeProject
-npm start
+npm start #you can also use: expo start
 

This will start a development server for you.

Running your React Native application

diff --git a/docs/next/getting-started/index.html b/docs/next/getting-started/index.html index 6576999209b..e3f2a4fd79a 100644 --- a/docs/next/getting-started/index.html +++ b/docs/next/getting-started/index.html @@ -128,7 +128,7 @@
expo init AwesomeProject
 
 cd AwesomeProject
-npm start
+npm start #you can also use: expo start
 

This will start a development server for you.

Running your React Native application

diff --git a/docs/next/refreshcontrol.html b/docs/next/refreshcontrol.html index 35994902531..1f7915e94eb 100644 --- a/docs/next/refreshcontrol.html +++ b/docs/next/refreshcontrol.html @@ -35,7 +35,9 @@ });
Edit

RefreshControl

This component is used inside a ScrollView or ListView to add pull to refresh functionality. When the ScrollView is at scrollY: 0, swiping down triggers an onRefresh event.

Usage example

-
class RefreshableList extends Component {
+
import { ScrollView, RefreshControl } from 'react-native';
+
+class RefreshableList extends Component {
   constructor(props) {
     super(props);
     this.state = {
diff --git a/docs/next/refreshcontrol/index.html b/docs/next/refreshcontrol/index.html
index 35994902531..1f7915e94eb 100644
--- a/docs/next/refreshcontrol/index.html
+++ b/docs/next/refreshcontrol/index.html
@@ -35,7 +35,9 @@
             });
         
Edit

RefreshControl

This component is used inside a ScrollView or ListView to add pull to refresh functionality. When the ScrollView is at scrollY: 0, swiping down triggers an onRefresh event.

Usage example

-
class RefreshableList extends Component {
+
import { ScrollView, RefreshControl } from 'react-native';
+
+class RefreshableList extends Component {
   constructor(props) {
     super(props);
     this.state = {