Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 830e02e

Browse files
committedMay 16, 2019
Improves the wording on the init screen
1 parent aca14fd commit 830e02e

File tree

2 files changed

+5
-7
lines changed

2 files changed

+5
-7
lines changed
 

‎Libraries/NewAppScreen/components/LearnMoreLinks.js

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,19 +19,18 @@ const links = [
1919
{
2020
title: 'The Basics',
2121
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.',
2423
},
2524
{
2625
title: 'Style',
2726
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.',
2929
},
3030
{
3131
title: 'Layout',
3232
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.',
3534
},
3635
{
3736
title: 'Components',

‎template/App.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,7 @@ const App = () => {
5656
<View style={styles.sectionContainer}>
5757
<Text style={styles.sectionTitle}>Learn More</Text>
5858
<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:
6160
</Text>
6261
</View>
6362
<LearnMoreLinks />

0 commit comments

Comments
 (0)
Please sign in to comment.