Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/handling-text-input.md
Original file line number Diff line number Diff line change
Expand Up @@ -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() {
Expand Down