Files
react-native/packages/rn-tester/js/examples/DevSettings/DevSettingsExample.js
Sam Zhou 5b96e90f77 Replace React.Element<any> and unnecessarily specific React.Element with React.MixedElement (#45923)
Summary:
Pull Request resolved: https://github.com/facebook/react-native/pull/45923

Changelog: [Internal]

Reviewed By: gkz

Differential Revision: D60872182

fbshipit-source-id: b81fb43968c52cbfdb4a9fa57f1175aabc2a3939
2024-08-06 21:33:08 -07:00

48 lines
1.1 KiB
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.
*
* @format
* @flow
*/
import * as React from 'react';
import {Alert, Button, DevSettings} from 'react-native';
exports.title = 'DevSettings';
exports.category = 'Basic';
exports.documentationURL = 'https://reactnative.dev/docs/devsettings';
exports.description = 'Customize the development settings';
exports.examples = [
{
title: 'Add dev menu item',
render(): React.MixedElement {
return (
<Button
title="Add"
onPress={() => {
DevSettings.addMenuItem('Show Secret Dev Screen', () => {
Alert.alert('Showing secret dev screen!');
});
}}
/>
);
},
},
{
title: 'Reload the app',
render(): React.MixedElement {
return (
<Button
title="Reload"
onPress={() => {
DevSettings.reload();
}}
/>
);
},
},
];