From 39088affbcbac2465a84d5812e02a30c9b3d73a5 Mon Sep 17 00:00:00 2001 From: Nicolas Gallagher Date: Mon, 17 Aug 2015 13:46:28 -0700 Subject: [PATCH] Add TextInput to example --- example/example.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/example/example.js b/example/example.js index 8e9aabd4..8f67c1f1 100644 --- a/example/example.js +++ b/example/example.js @@ -1,5 +1,5 @@ import React from 'react'; -import { Image, Text, View } from '../dist/main'; +import { Image, Text, TextInput, View } from '../dist/main'; class Example extends React.Component { render() { @@ -24,6 +24,9 @@ class Example extends React.Component { }}> This should be centered + + + ); }