mirror of
https://github.com/status-im/react-native.git
synced 2025-01-10 17:45:59 +00:00
19a9c5e41d
Summary: The previous file/class name convention seemed cool... but now it drives me BANANAS! It makes all this code really hard to maintain. So, evething were renamed following common modern RN convention. Reviewed By: mmmulani Differential Revision: D6605090 fbshipit-source-id: 88ca13d793a5d2adaac2b7922ec6bd4654aacec5
17 lines
442 B
Objective-C
17 lines
442 B
Objective-C
/**
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
* All rights reserved.
|
|
*
|
|
* This source code is licensed under the BSD-style license found in the
|
|
* LICENSE file in the root directory of this source tree. An additional grant
|
|
* of patent rights can be found in the PATENTS file in the same directory.
|
|
*/
|
|
|
|
#import <React/RCTShadowView.h>
|
|
|
|
@interface RCTRawTextShadowView : RCTShadowView
|
|
|
|
@property (nonatomic, copy) NSString *text;
|
|
|
|
@end
|