diff --git a/packages/rn-tester/js/examples/FabricInteropLayer/FabricInteropLayer.js b/packages/rn-tester/js/examples/FabricInteropLayer/FabricInteropLayer.js index 2025cadd787..7d7429ea78a 100644 --- a/packages/rn-tester/js/examples/FabricInteropLayer/FabricInteropLayer.js +++ b/packages/rn-tester/js/examples/FabricInteropLayer/FabricInteropLayer.js @@ -23,6 +23,7 @@ import { type SectionProps = { title: string, + testID?: string, children?: React.Node, }; @@ -82,13 +83,21 @@ function AddChildrenForInteropLayer() { backgroundColor: isDarkMode ? BLACK : WHITE, }}>
-
-
+
{squares.map((_, index) => ( - + ))}
@@ -134,16 +143,16 @@ const styles = StyleSheet.create({ }, }); -exports.title = 'Fabric Interop Layer'; +exports.title = 'FabricInteropLayer'; exports.category = 'UI'; exports.description = 'A set test cases for the Fabric Interop Layer.'; exports.examples = [ { title: 'Add children to Interop Layer', description: 'Add children to Interop Layer', - name: 'Add Children to interop layer', + name: 'add-children', render(): React.Node { - return ; + return ; }, }, ];