mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
Summary: Pull Request resolved: https://github.com/facebook/react-native/pull/48127 [Changelog] [Internal] - Allow to provide a custom TextLayoutManager for cxx platform This change allows target platforms to pass a platform specific or app specific TextLayoutManager implementation Reviewed By: zeyap Differential Revision: D66802434 fbshipit-source-id: a64e28d357bf601c7234b43f86538f49e62c8435
15 lines
359 B
C++
15 lines
359 B
C++
/*
|
|
* 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.
|
|
*/
|
|
|
|
#include "ParagraphComponentDescriptor.h"
|
|
|
|
namespace facebook::react {
|
|
|
|
extern const char TextLayoutManagerKey[] = "TextLayoutManager";
|
|
|
|
} // namespace facebook::react
|