/
githubmirror
/
react-native
Обзор
Документация
Войти
/
githubmirror
/
react-native
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
packages/rn-tester/js/components/RNTesterButton.js
52 строки
1 KB
Tim Yung
xplat/js: Auto-fix `react-prefer-namespace-import` ESLint Rule (#56233)
27 мар 2026, 03:04
27 мар 2026, 03:04
bfb6870
Код
Авторство
О чём код?
/** * Copyright (c) Meta Platforms, Inc. and affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * @flow strict-local * @format */ 'use strict'; import type {GestureResponderEvent} from 'react-native'; import * as React from 'react'; import {Pressable, StyleSheet, Text} from 'react-native'; type Props = Readonly<{ testID?: string, textTestID?: string, children?: React.Node, onPress?: ?(event: GestureResponderEvent) => unknown, }>; function RNTesterButton(props: Props): React.Node { return ( <Pressable testID={props.testID} onPress={props.onPress} style={({pressed}) => [styles.button, pressed && styles.pressed]}> <Text testID={props.textTestID}>{props.children}</Text> </Pressable> ); } const styles = StyleSheet.create({ button: { borderColor: '#696969', borderRadius: 8, borderWidth: 1, padding: 10, margin: 5, alignItems: 'center', justifyContent: 'center', backgroundColor: '#d3d3d3', }, pressed: { backgroundColor: '#a9a9a9', }, }); export default RNTesterButton;