mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
06ce568155
Summary: All props to Eric Lewis! cc ericlewis This revert of revert of land of changes originally published in #24873 (with some slight fixes). The change removes usage of LocalData from the `<Text>` component. After this change we only have ---one (maybe two)--- three components left using LocalData. Reviewed By: mdvacca Differential Revision: D15962376 fbshipit-source-id: 19f41109ce9d71ce30d618a45eb2b547a11f29a2
24 lines
509 B
C++
24 lines
509 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.
|
|
*/
|
|
|
|
#include "ParagraphState.h"
|
|
|
|
#include <react/components/text/conversions.h>
|
|
#include <react/debug/debugStringConvertibleUtils.h>
|
|
|
|
namespace facebook {
|
|
namespace react {
|
|
|
|
#ifdef ANDROID
|
|
folly::dynamic ParagraphState::getDynamic() const {
|
|
return toDynamic(*this);
|
|
}
|
|
#endif
|
|
|
|
} // namespace react
|
|
} // namespace facebook
|