// Copyright (c) 2024 Huawei Device Co., Ltd. All rights reserved
// Use of this source code is governed by a MIT license that can be
// found in the LICENSE file.
#ifndef MASKED_VIEW_DESCRIPTOR_H
#define MASKED_VIEW_DESCRIPTOR_H
#pragma once
#include <react/renderer/core/ConcreteComponentDescriptor.h>
#include "ShadowNodes.h"
namespace facebook {
namespace react {
class MaskedViewDescriptor final
: public ConcreteComponentDescriptor<MaskedViewShadowNode> {
public:
MaskedViewDescriptor(ComponentDescriptorParameters const ¶meters)
: ConcreteComponentDescriptor(parameters) {}
};
} // namespace react
} // namespace facebook
#endif // MASKED_VIEW_DESCRIPTOR_H