19 lines
269 B
Mathematica
19 lines
269 B
Mathematica
|
#import "RCTViewManager.h"
|
||
|
#import "RCTWKWebView.h"
|
||
|
|
||
|
@interface RCTWKWebViewManager : RCTViewManager
|
||
|
@end
|
||
|
|
||
|
@implementation RCTWKWebViewManager
|
||
|
|
||
|
RCT_EXPORT_MODULE()
|
||
|
|
||
|
- (UIView *)view
|
||
|
{
|
||
|
return [RCTWKWebView new];
|
||
|
}
|
||
|
|
||
|
RCT_EXPORT_VIEW_PROPERTY(source, NSDictionary)
|
||
|
|
||
|
@end
|