mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
a011eaf7e5
Summary: Basic implementation of ARTSurfaceView (shadow nodes, props and component descriptor) changelog: [Internal] Reviewed By: shergin Differential Revision: D21621484 fbshipit-source-id: 5577989e966a8a97a043454bf9ae1e5602abc3b1
21 lines
502 B
C++
21 lines
502 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/ARTSurfaceViewShadowNode.h>
|
|
#include <react/core/ConcreteComponentDescriptor.h>
|
|
|
|
namespace facebook {
|
|
namespace react {
|
|
|
|
using ARTSurfaceViewComponentDescriptor =
|
|
ConcreteComponentDescriptor<ARTSurfaceViewShadowNode>;
|
|
|
|
} // namespace react
|
|
} // namespace facebook
|