Files
react-native/ReactKit/Views/RCTRawTextManager.m
2015-01-29 17:10:49 -08:00

21 lines
358 B
Objective-C

// Copyright 2004-present Facebook. All Rights Reserved.
#import "RCTRawTextManager.h"
#import "RCTShadowRawText.h"
@implementation RCTRawTextManager
- (UIView *)viewWithEventDispatcher:(RCTJavaScriptEventDispatcher *)eventDispatcher
{
return [[UIView alloc] init];
}
- (RCTShadowView *)shadowView
{
return [[RCTShadowRawText alloc] init];
}
@end