mirror of
https://github.com/zhigang1992/react-native.git
synced 2026-06-12 07:04:33 +08:00
Summary: Apparently, I haven't modify all files in D14018903. Here is the last (I hope) chunk. Reviewed By: JoshuaGross Differential Revision: D14058288 fbshipit-source-id: b21950cdd1aa9aa55b0c72fac0f8b44e4a7d131c
21 lines
456 B
Objective-C
21 lines
456 B
Objective-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.
|
|
*/
|
|
|
|
#import <React/RCTImageResponseDelegate.h>
|
|
#import "RCTViewComponentView.h"
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
/**
|
|
* UIView class for root <Image> component.
|
|
*/
|
|
@interface RCTImageComponentView : RCTViewComponentView <RCTImageResponseDelegate>
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|