Files
react-native/Libraries/ReactNative/RootTag.js
T
Brian Vaughn 68a476103a Name a bunch of anonymous RN contexts
Summary:
Changelog:
[General] [Changed] - Added (DEV-only) `displayName` to some RN contexts to make them more easy to differentiate when debugging.

Reviewed By: lunaleaps

Differential Revision: D24993068

fbshipit-source-id: 4904259eda50444c2f74700a3540ff4fd02ac322
2020-11-16 13:12:09 -08:00

32 lines
632 B
JavaScript

/**
* Copyright (c) Facebook, Inc. and its 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
* @format
*/
'use strict';
import * as React from 'react';
// TODO: Make this into an opaque type.
export type RootTag = number;
export const RootTagContext: React$Context<RootTag> = React.createContext<RootTag>(
0,
);
if (__DEV__) {
RootTagContext.displayName = 'RootTagContext';
}
/**
* Intended to only be used by `AppContainer`.
*/
export function createRootTag(rootTag: number): RootTag {
return rootTag;
}