1// Jest Snapshot v1, https://goo.gl/fbAQLP
2
3exports[`warns about unwrapped strings 1`] = `
4<View>
5  <Text
6    style={
7      [
8        {
9          "bottom": 0,
10          "left": 0,
11          "position": "absolute",
12          "right": 0,
13          "top": 0,
14        },
15        {
16          "backgroundColor": "firebrick",
17          "color": "white",
18        },
19      ]
20    }
21  >
22    Unwrapped text: "
23    <Text
24      style={
25        {
26          "fontWeight": "bold",
27        }
28      }
29    >
30      Hey
31    </Text>
32    "
33  </Text>
34</View>
35`;
36