mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
12fee9af62
Summary: Create basic implementation of Shape (shadow node, props and component descriptor) changelog: [Internal] Internal changes to support art in Fabric Reviewed By: shergin Differential Revision: D21621482 fbshipit-source-id: e5b9bb2812ee92bce625301b7521f0578eaca0ff
21 lines
484 B
C++
21 lines
484 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/ARTShapeShadowNode.h>
|
|
#include <react/core/ConcreteComponentDescriptor.h>
|
|
|
|
namespace facebook {
|
|
namespace react {
|
|
|
|
using ARTShapeComponentDescriptor =
|
|
ConcreteComponentDescriptor<ARTShapeShadowNode>;
|
|
|
|
} // namespace react
|
|
} // namespace facebook
|