invariant Violation: View config not found for name input

【ReactNative】これ。Invariant Violation: View config not found for name input

【ReactNative】これ。Invariant Violation: View config not found for name input

invariant Violation: View config not found for name input
invariant Violation: View config not found for name input

ReactNativeでは使えないComponentを使っている可能性

 

この場合

error is located at:

in input (at Photo.js: 10)

と言われているので

Photo.js10行目のinputを見てください

```
<input type="file" onChange={selectPhoto} />

```

これは使えないコンポーネントですね。。

もしfileを扱う際はwebの方では
Dropzone
nativeの方では
ButtonのonPressを使ってImagePickerを実行する

textを使いたい場合は
https://facebook.github.io/react-native/docs/textinput

もしまだRNに親しみがなく、どこが原因かわからない場合、
色々な疑わしいコンポーネント内の記述を削除してリロード。エラーがなくなるか確認しながら絞っていく。