react-native-windows
Version:
React Native for Windows
31 lines (25 loc) • 647 B
JavaScript
/**
* 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 type {Node} from 'react';
import StyleSheet from '../../StyleSheet/StyleSheet';
import Text from '../../Text/Text';
import React from 'react';
const styles = StyleSheet.create({
highlight: {
fontWeight: '700',
},
});
const DebugInstructions = (): Node => (
<Text>
Press <Text style={styles.highlight}>Ctrl+Shift+D</Text> to open the Dev
Menu.
</Text>
);
export default DebugInstructions;