これがコンポーネントであるとします。
class Wysiwyg extends Component {
constructor(props) {
super(props);
}
render() {
return(
<View>
<TextInput placeholder="Type here" />
</View>
)
}
}
AppRegistry.registerComponent('AwesomeProject', () => Wysiwyg)
そして、「大きな茶色の目!」と入力しました。
テキスト入力から「Big」を選択した場合。ボタンを押すと「ビッグ」をビッグボールドに変更できるように、選択したテキスト入力値を取得するにはどうすればよいですか。