mirror of
https://github.com/status-im/react-native.git
synced 2025-01-24 00:09:08 +00:00
4a814d1370
Reviewed By: rubennorte Differential Revision: D7490562 fbshipit-source-id: 861681c24eab678d25af47bb25738651fe3e26b4
24 lines
448 B
JavaScript
24 lines
448 B
JavaScript
/**
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
* @providesModule ViewContext
|
|
* @flow
|
|
* @format
|
|
*/
|
|
'use strict';
|
|
|
|
const PropTypes = require('prop-types');
|
|
|
|
export type ViewChildContext = {|
|
|
+isInAParentText: boolean,
|
|
|};
|
|
|
|
module.exports = {
|
|
ViewContextTypes: {
|
|
isInAParentText: PropTypes.bool,
|
|
},
|
|
};
|