mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
608029aed2
Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/42880 Convert `const x = (a: T)` into `const x: T = a`. These are equivalent in Flow, and helps reduce the amount of colon-casts. ``` js1 flow-runner codemod flow/castToAnnotatedVariable --target colon xplat/js ``` Changelog: [Internal] drop-conflicts Reviewed By: SamChou19815 Differential Revision: D53392999 fbshipit-source-id: 3b4602618d6990e8642b423edaeb4e89b01a199a
26 lines
768 B
JavaScript
26 lines
768 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 {RNTesterModuleExample} from '../../types/RNTesterTypes';
|
|
|
|
import ModalOnShow from './ModalOnShow';
|
|
import ModalPresentation from './ModalPresentation';
|
|
|
|
export const displayName: ?string = undefined;
|
|
export const framework = 'React';
|
|
export const title = 'Modal';
|
|
export const category = 'UI';
|
|
export const documentationURL = 'https://reactnative.dev/docs/modal';
|
|
export const description = 'Component for presenting modal views.';
|
|
export const examples: Array<RNTesterModuleExample> = [
|
|
ModalPresentation,
|
|
ModalOnShow,
|
|
];
|