mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
7929f674cc
Summary: Basic implementation of ARTText (shadow node, props and component descriptor) changelog: [Internal] Internal changes to support art in Fabric Reviewed By: shergin Differential Revision: D21621483 fbshipit-source-id: d0886dc149520af13faa1bb936dfcccab1798c37
21 lines
481 B
C++
21 lines
481 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
|
|
|
|
#include <react/components/art/ARTTextShadowNode.h>
|
|
#include <react/core/ConcreteComponentDescriptor.h>
|
|
|
|
namespace facebook {
|
|
namespace react {
|
|
|
|
using ARTTextComponentDescriptor =
|
|
ConcreteComponentDescriptor<ARTTextShadowNode>;
|
|
|
|
} // namespace react
|
|
} // namespace facebook
|