mirror of
https://github.com/status-im/react-native.git
synced 2025-01-16 20:44:10 +00:00
21 lines
291 B
Mathematica
21 lines
291 B
Mathematica
|
// Copyright 2004-present Facebook. All Rights Reserved.
|
||
|
|
||
|
#import "RCTRawTextManager.h"
|
||
|
|
||
|
#import "RCTShadowRawText.h"
|
||
|
|
||
|
@implementation RCTRawTextManager
|
||
|
|
||
|
- (UIView *)view
|
||
|
{
|
||
|
return [[UIView alloc] init];
|
||
|
}
|
||
|
|
||
|
- (RCTShadowView *)shadowView
|
||
|
{
|
||
|
return [[RCTShadowRawText alloc] init];
|
||
|
}
|
||
|
|
||
|
@end
|
||
|
|