From f7cb7451955aa94dd4a6919ede23d063d2f45140 Mon Sep 17 00:00:00 2001 From: Moz Morris Date: Fri, 22 Jan 2016 06:53:50 -0800 Subject: [PATCH] Update Tutorial.md with missing Component import Summary: Closes https://github.com/facebook/react-native/pull/5484 Reviewed By: svcscm Differential Revision: D2854745 Pulled By: androidtrunkagent fb-gh-sync-id: b89a8dbef33cc0d89d5e94fa7c5f35219d7c8147 --- docs/Tutorial.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/Tutorial.md b/docs/Tutorial.md index 26696d3f5..6a809b77c 100644 --- a/docs/Tutorial.md +++ b/docs/Tutorial.md @@ -59,6 +59,7 @@ We're going to render the title, year, and thumbnail for the movie. Since thumbn ```javascript import React, { AppRegistry, + Component, Image, StyleSheet, Text, @@ -296,6 +297,7 @@ First things first: add the `ListView` import to the top of the file. ```javascript import React, { AppRegistry, + Component, Image, ListView, StyleSheet,