Skip to content

Latest commit

 

History

History
17 lines (12 loc) · 286 Bytes

RawText-must-be-wrapped.md

File metadata and controls

17 lines (12 loc) · 286 Bytes

RawText must be wrapped issue

RawText " " must be wrapped in an explicit component.

This error happens when I put some codes in one line.

<View> <PageView /> </View>

And this issue is resolved by put this code in three lines.

<View>
  <PageView />
</View>