File tree Expand file tree Collapse file tree 2 files changed +5
-7
lines changed
Libraries/NewAppScreen/components Expand file tree Collapse file tree 2 files changed +5
-7
lines changed Original file line number Diff line number Diff line change @@ -19,19 +19,18 @@ const links = [
19
19
{
20
20
title : 'The Basics' ,
21
21
link : 'https://facebook.github.io/react-native/docs/tutorial' ,
22
- description :
23
- 'Read the docs on what to do once seen how to work in React Native.' ,
22
+ description : 'Explains a Hello World for React Native.' ,
24
23
} ,
25
24
{
26
25
title : 'Style' ,
27
26
link : 'https://facebook.github.io/react-native/docs/style' ,
28
- description : 'All of the core components accept a prop named style.' ,
27
+ description :
28
+ 'Covers how to use the prop named style which controls the visuals.' ,
29
29
} ,
30
30
{
31
31
title : 'Layout' ,
32
32
link : 'https://facebook.github.io/react-native/docs/flexbox' ,
33
- description :
34
- 'A component can specify the layout of its children using the flexbox specification.' ,
33
+ description : 'React Native uses flexbox for layout, learn how it works.' ,
35
34
} ,
36
35
{
37
36
title : 'Components' ,
Original file line number Diff line number Diff line change @@ -56,8 +56,7 @@ const App = () => {
56
56
< View style = { styles . sectionContainer } >
57
57
< Text style = { styles . sectionTitle } > Learn More</ Text >
58
58
< Text style = { styles . sectionDescription } >
59
- Read the docs on what to do once seen how to work in React
60
- Native.
59
+ Read the docs to discover what to do next:
61
60
</ Text >
62
61
</ View >
63
62
< LearnMoreLinks />
You can’t perform that action at this time.
0 commit comments