Skip to content

Commit 126e2e7

Browse files
authored
Update typo in tutorial.md
I'm not sure we 'find' a function! 'Define' sounds more like what we're aiming for!
1 parent d107aa0 commit 126e2e7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/tutorial.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ If you are feeling curious, you can play around with sample code directly in the
3737
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.
3838
2. On line 2, we import the `Text` and `View` components from `react-native`
3939

40-
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.
40+
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.
4141

4242
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.
4343

0 commit comments

Comments
 (0)