diff --git a/docs/next/tutorial.html b/docs/next/tutorial.html index 16581a1c0ad..aa9855b427e 100644 --- a/docs/next/tutorial.html +++ b/docs/next/tutorial.html @@ -36,7 +36,7 @@
Edit

Learn the Basics

React Native is like React, but it uses native components instead of web components as building blocks. So to understand the basic structure of a React Native app, you need to understand some of the basic React concepts, like JSX, components, state, and props. If you already know React, you still need to learn some React-Native-specific stuff, like the native components. This tutorial is aimed at all audiences, whether you have React experience or not.

Let's do this thing.

Hello World

-

In accordance with the ancient traditions of our people, we must first build an app that does nothing except say "Hello world". Here it is:

+

In accordance with the ancient traditions of our people, we must first build an app that does nothing except say "Hello, world!". Here it is:

import React, { Component } from 'react';
 import { Text, View } from 'react-native';
 
@@ -44,12 +44,12 @@
   render() {
     return (
       <View style={{ flex: 1, justifyContent: "center", alignItems: "center" }}>
-        <Text>Hello world!</Text>
+        <Text>Hello, world!</Text>
       </View>
     );
   }
 }
-
+

If you are feeling curious, you can play around with sample code directly in the web simulators. You can also paste it into your App.js file to create a real app on your local machine.

What's going on here?

diff --git a/docs/next/tutorial/index.html b/docs/next/tutorial/index.html index 16581a1c0ad..aa9855b427e 100644 --- a/docs/next/tutorial/index.html +++ b/docs/next/tutorial/index.html @@ -36,7 +36,7 @@
Edit

Learn the Basics

React Native is like React, but it uses native components instead of web components as building blocks. So to understand the basic structure of a React Native app, you need to understand some of the basic React concepts, like JSX, components, state, and props. If you already know React, you still need to learn some React-Native-specific stuff, like the native components. This tutorial is aimed at all audiences, whether you have React experience or not.

Let's do this thing.

Hello World

-

In accordance with the ancient traditions of our people, we must first build an app that does nothing except say "Hello world". Here it is:

+

In accordance with the ancient traditions of our people, we must first build an app that does nothing except say "Hello, world!". Here it is:

import React, { Component } from 'react';
 import { Text, View } from 'react-native';
 
@@ -44,12 +44,12 @@
   render() {
     return (
       <View style={{ flex: 1, justifyContent: "center", alignItems: "center" }}>
-        <Text>Hello world!</Text>
+        <Text>Hello, world!</Text>
       </View>
     );
   }
 }
-
+

If you are feeling curious, you can play around with sample code directly in the web simulators. You can also paste it into your App.js file to create a real app on your local machine.

What's going on here?