ReactNative

【React Native】Invariant Violation Text strings must be rendered within a component

Invariant Violation Text strings must be rendered within a component

原因

テキスト文字列が正しく定義されていないことに起因している。
htmlの感覚でいると文字列は基本的にタグで囲まなくても使用できるがReactNativeの場合は
必ずタグの中に記載する必要があります

解決方法

タグの中で文字列を記載する。
例:

<Text>"文字列"</Text>