From ad4a5d9a3eac9794038e93158d45e7f1ceb9e495 Mon Sep 17 00:00:00 2001 From: Orta Therox Date: Fri, 17 May 2019 03:46:12 -0700 Subject: [PATCH] Improves the copy for the new app screen (#24918) Summary: 1. Consistency with full stops (you can see screenshots in https://github.com/facebook/react-native/pull/24783 ) 2. Improvements to the wording, describing what you're going to see ## Changelog [Internal] [Fixed] - Improves the copy for the new app screen Pull Request resolved: https://github.com/facebook/react-native/pull/24918 Differential Revision: D15391421 Pulled By: cpojer fbshipit-source-id: 2ec6d2d5bd4845c5f4c699838ae865ab4217e49e --- Libraries/NewAppScreen/components/LearnMoreLinks.js | 9 ++++----- Libraries/NewAppScreen/components/ReloadInstructions.js | 4 ++-- template/App.js | 3 +-- 3 files changed, 7 insertions(+), 9 deletions(-) diff --git a/Libraries/NewAppScreen/components/LearnMoreLinks.js b/Libraries/NewAppScreen/components/LearnMoreLinks.js index b815e427f484da..da43a28ed77074 100644 --- a/Libraries/NewAppScreen/components/LearnMoreLinks.js +++ b/Libraries/NewAppScreen/components/LearnMoreLinks.js @@ -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', diff --git a/Libraries/NewAppScreen/components/ReloadInstructions.js b/Libraries/NewAppScreen/components/ReloadInstructions.js index 3404b3e8817166..3f44eac65e126a 100644 --- a/Libraries/NewAppScreen/components/ReloadInstructions.js +++ b/Libraries/NewAppScreen/components/ReloadInstructions.js @@ -21,13 +21,13 @@ const ReloadInstructions = Platform.select({ ios: () => ( Press Cmd+R in the simulator to - reload your app's code + reload your app's code. ), default: () => ( Double tap R on your keyboard to - reload your app's code + reload your app's code. ), }); diff --git a/template/App.js b/template/App.js index dd19a99df0e52c..fee529a8f21507 100644 --- a/template/App.js +++ b/template/App.js @@ -56,8 +56,7 @@ const App = () => { Learn More - Read the docs on what to do once seen how to work in React - Native. + Read the docs to discover what to do next: