21 lines
291 B
Objective-C
21 lines
291 B
Objective-C
// 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
|
|
|