Skip to content

Commit a5d8d91

Browse files
cortinicofacebook-github-bot
authored andcommitted
@nocommit - Reproducer for facebook#51072
Summary: Reproducer for facebook#51072 Changelog: [Internal] [Changed] - Differential Revision: D74326426
1 parent 130fb7f commit a5d8d91

1 file changed

Lines changed: 9 additions & 1 deletion

File tree

packages/rn-tester/js/examples/Playground/RNTesterPlayground.js

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,14 +13,16 @@ import type {RNTesterModuleExample} from '../../types/RNTesterTypes';
1313

1414
import RNTesterText from '../../components/RNTesterText';
1515
import * as React from 'react';
16-
import {StyleSheet, View} from 'react-native';
16+
import {StyleSheet, View, TextInput} from 'react-native';
1717

1818
function Playground() {
1919
return (
2020
<View style={styles.container}>
2121
<RNTesterText>
2222
Edit "RNTesterPlayground.js" to change this file
2323
</RNTesterText>
24+
<TextInput style={styles.input} />
25+
<TextInput style={styles.input} />
2426
</View>
2527
);
2628
}
@@ -29,6 +31,12 @@ const styles = StyleSheet.create({
2931
container: {
3032
padding: 10,
3133
},
34+
input: {
35+
height: 40,
36+
margin: 12,
37+
borderWidth: 1,
38+
padding: 10,
39+
},
3240
});
3341

3442
export default ({

0 commit comments

Comments
 (0)