UnimplementedViewShadowNode.h 597 B

1234567891011121314151617181920212223
  1. /*
  2. * Copyright (c) Facebook, Inc. and its affiliates.
  3. *
  4. * This source code is licensed under the MIT license found in the
  5. * LICENSE file in the root directory of this source tree.
  6. */
  7. #pragma once
  8. #include <react/components/unimplementedview/UnimplementedViewProps.h>
  9. #include <react/components/view/ConcreteViewShadowNode.h>
  10. namespace facebook {
  11. namespace react {
  12. extern const char UnimplementedViewComponentName[];
  13. using UnimplementedViewShadowNode = ConcreteViewShadowNode<
  14. UnimplementedViewComponentName,
  15. UnimplementedViewProps>;
  16. } // namespace react
  17. } // namespace facebook