From ef054154e6f559bb1a758ab8d0691bbc9bea5176 Mon Sep 17 00:00:00 2001 From: Edilson Alves Date: Sat, 28 Mar 2020 17:29:58 -0300 Subject: [PATCH] Remove unnecessary import (Handling Text Input) --- docs/handling-text-input.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/handling-text-input.md b/docs/handling-text-input.md index d46a4842ef4..379cde0a6d0 100644 --- a/docs/handling-text-input.md +++ b/docs/handling-text-input.md @@ -8,7 +8,7 @@ title: Handling Text Input For example, let's say that as the user types, you're translating their words into a different language. In this new language, every single word is written the same way: 🍕. So the sentence "Hello there Bob" would be translated as "🍕🍕🍕". ```SnackPlayer name=Handling%20Text%20Input -import React, { Component, useState } from 'react'; +import React, { useState } from 'react'; import { Text, TextInput, View } from 'react-native'; export default function PizzaTranslator() {