mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
54adda64ec
Summary: Basic implementation of ARTGroupProps (shadow node, props and component descriptor) changelog: [Internal] Internal changes to support art in Fabric Reviewed By: shergin Differential Revision: D21621480 fbshipit-source-id: 367a479568b8c1a290f3e0f633cc4052a9c95b87
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/ARTGroupShadowNode.h>
|
|
#include <react/core/ConcreteComponentDescriptor.h>
|
|
|
|
namespace facebook {
|
|
namespace react {
|
|
|
|
using ARTGroupComponentDescriptor =
|
|
ConcreteComponentDescriptor<ARTGroupShadowNode>;
|
|
|
|
} // namespace react
|
|
} // namespace facebook
|