Docs improvement

Summary:
In the `Additional Scenes` section, the `TouchableHighlight` component is used, but is not present in the import statement.

This is confusing and results in a `Can't find variable: TouchableHighlight` error.

This PR attempts to correct this confusion.
Closes https://github.com/facebook/react-native/pull/10276

Differential Revision: D3997058

Pulled By: hramos

fbshipit-source-id: 22ebf39cd39d8a76427c89cecc774ff9aef2c3c8
This commit is contained in:
Jeff Thomas 2016-10-10 18:18:42 -07:00 committed by Facebook Github Bot
parent 176f96d7b6
commit de70a622aa
1 changed files with 1 additions and 1 deletions

View File

@ -141,7 +141,7 @@ var GESTURE_ACTIONS = [
*
* ```
* import React, { Component } from 'react';
* import { Text, Navigator } from 'react-native';
* import { Text, Navigator, TouchableHighlight } from 'react-native';
*
* export default class NavAllDay extends Component {
* render() {