1// Jest Snapshot v1, https://goo.gl/fbAQLP
2
3exports[`renders Caption 1`] = `
4<Text
5  style={
6    {
7      "fontSize": 32,
8      "textAlign": "center",
9    }
10  }
11>
12  Caption
13</Text>
14`;
15
16exports[`renders TBody 1`] = `<View />`;
17
18exports[`renders TD 1`] = `
19<Text
20  style={
21    {
22      "flex": 1,
23      "fontSize": 32,
24    }
25  }
26>
27  Column
28</Text>
29`;
30
31exports[`renders TFoot 1`] = `<View />`;
32
33exports[`renders TH 1`] = `
34<Text
35  style={
36    {
37      "flex": 1,
38      "fontSize": 32,
39      "fontWeight": "bold",
40      "textAlign": "center",
41    }
42  }
43>
44  Header
45</Text>
46`;
47
48exports[`renders THead 1`] = `<View />`;
49
50exports[`renders TR 1`] = `
51<View
52  style={
53    {
54      "flexDirection": "row",
55    }
56  }
57/>
58`;
59
60exports[`renders Table 1`] = `<View />`;
61