Skip to content

Commit

Permalink
Improves the wording on the init screen
Browse files Browse the repository at this point in the history
  • Loading branch information
orta committed May 16, 2019
1 parent aca14fd commit 830e02e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 7 deletions.
9 changes: 4 additions & 5 deletions Libraries/NewAppScreen/components/LearnMoreLinks.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,19 +19,18 @@ const links = [
{
title: 'The Basics',
link: 'https://facebook.github.io/react-native/docs/tutorial',
description:
'Read the docs on what to do once seen how to work in React Native.',
description: 'Explains a Hello World for React Native.',
},
{
title: 'Style',
link: 'https://facebook.github.io/react-native/docs/style',
description: 'All of the core components accept a prop named style.',
description:
'Covers how to use the prop named style which controls the visuals.',
},
{
title: 'Layout',
link: 'https://facebook.github.io/react-native/docs/flexbox',
description:
'A component can specify the layout of its children using the flexbox specification.',
description: 'React Native uses flexbox for layout, learn how it works.',
},
{
title: 'Components',
Expand Down
3 changes: 1 addition & 2 deletions template/App.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,7 @@ const App = () => {
<View style={styles.sectionContainer}>
<Text style={styles.sectionTitle}>Learn More</Text>
<Text style={styles.sectionDescription}>
Read the docs on what to do once seen how to work in React
Native.
Read the docs to discover what to do next:
</Text>
</View>
<LearnMoreLinks />
Expand Down

0 comments on commit 830e02e

Please sign in to comment.