We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8fad8ba commit d757a9bCopy full SHA for d757a9b
1 file changed
packages/native/test/lib/fixtures/containElementTestComponent.tsx
@@ -0,0 +1,18 @@
1
+import { ReactElement } from "react";
2
+import {
3
+ View,
4
+ Text,
5
+} from "react-native";
6
+
7
+export function ContainElementTestComponent(): ReactElement {
8
+return (
9
+ <View testID="grandParent">
10
+ <View testID="parent">
11
+ <View>
12
+ <Text>{"child"}</Text>
13
+ </View>
14
15
+ <Text>{"text"}</Text>
16
17
+ );
18
+}
0 commit comments