/
githubmirror
/
react-native
Обзор
Документация
Войти
/
githubmirror
/
react-native
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
packages/rn-tester/js/components/RNTesterDocumentationURL.js
41 строка
966 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 */ import * as React from 'react'; import {Image, StyleSheet, TouchableOpacity} from 'react-native'; import openURLInBrowser from 'react-native/Libraries/Core/Devtools/openURLInBrowser'; type Props = Readonly<{ documentationURL: string, }>; const RNTesterDocumentationURL = ({documentationURL}: Props): React.Node => ( <TouchableOpacity style={styles.container} onPress={() => openURLInBrowser(documentationURL)}> <Image source={require('../assets/documentation.png')} style={styles.icon} /> </TouchableOpacity> ); export default RNTesterDocumentationURL; const styles = StyleSheet.create({ container: { position: 'absolute', bottom: 0, right: -15, }, icon: { height: 24, }, });