Files
react-native/ReactCommon/fabric/components/art/shape/ARTShapeComponentDescriptor.h
T
David Vacca 12fee9af62 Create basic implementation of Shape
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
2020-05-18 16:36:37 -07:00

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