diff --git a/docs/tutorial.md b/docs/tutorial.md index c851415ebf0..526906da9e2 100644 --- a/docs/tutorial.md +++ b/docs/tutorial.md @@ -37,7 +37,7 @@ If you are feeling curious, you can play around with sample code directly in the 1. First of all, we need to import `React` to be able to use `JSX`, which will then be transformed to the native components of each platform. 2. On line 2, we import the `Text` and `View` components from `react-native` -Then we find the `HelloWorldApp` function, which is a [functional component](https://reactjs.org/docs/components-and-props.html#function-and-class-components) and behaves in the same way as in React for the web. This function returns a `View` component with some styles and a`Text` as its child. +Then we define the `HelloWorldApp` function, which is a [functional component](https://reactjs.org/docs/components-and-props.html#function-and-class-components) and behaves in the same way as in React for the web. This function returns a `View` component with some styles and a`Text` as its child. The `Text` component allows us to render a text, while the `View` component renders a container. This container has several styles applied, let's analyze what each one is doing.