/
githubmirror
/
react-native
Обзор
Документация
Войти
/
githubmirror
/
react-native
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
packages/rn-tester/js/components/RNTConfigurationBlock.js
45 строк
1022 B
Marco Wang
Transform $ReadOnly to Readonly 38/n (#55067)
07 янв 2026, 07:23
07 янв 2026, 07:23
41efc3b
Код
Авторство
О чём код?
/** * 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 {RNTesterThemeContext} from './RNTesterTheme'; import * as React from 'react'; import {useContext} from 'react'; import {StyleSheet, View} from 'react-native'; type Props = Readonly<{ children?: ?React.Node, testID?: string, }>; /** * Container view for a block of configuration options for an example. */ export default function RNTConfigurationBlock(props: Props): React.Node { const theme = useContext(RNTesterThemeContext); return ( <View style={StyleSheet.compose(styles.container, { borderColor: theme.SeparatorColor, })} testID={props.testID}> {props.children} </View> ); } const styles = StyleSheet.create({ container: { paddingVertical: 6, paddingHorizontal: 10, borderBottomWidth: 1, }, });