Files
react-native/ReactCommon/react/renderer/core/Constants.h
T
Ikko Ashimine 5df92fb06c Fix typo in Constants.h (#31049)
Summary:
controling -> controlling

## Changelog

[Internal] [Fixed] - Fixed typo in comment

Pull Request resolved: https://github.com/facebook/react-native/pull/31049

Test Plan: NONE

Reviewed By: lunaleaps

Differential Revision: D29980007

Pulled By: charlesbdudley

fbshipit-source-id: 419f28f08d74faa07db18a07ab41b62c41776344
2021-07-28 21:22:07 -07:00

24 lines
541 B
C++

/*
* 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.
*/
#pragma once
namespace facebook {
namespace react {
struct Constants {
/*
Flag controlling props forwarding when shadow node is cloned on Android.
Has no effect on iOS.
*/
static void setPropsForwardingEnabled(bool propsForwardingEnabled);
static bool getPropsForwardingEnabled();
};
} // namespace react
} // namespace facebook