mirror of
https://github.com/status-im/react-native-webview-bridge.git
synced 2026-08-31 13:21:15 +00:00
18 lines
306 B
Objective-C
18 lines
306 B
Objective-C
//
|
|
// RCTWebView+WebViewBridge.m
|
|
// Sample2
|
|
//
|
|
// Created by Ali Najafizadeh on 2015-07-10.
|
|
// Copyright (c) 2015 Facebook. All rights reserved.
|
|
//
|
|
|
|
#import "RCTWebView+WebViewExBridge.h"
|
|
|
|
@implementation RCTWebView (WebViewExBridge)
|
|
|
|
- (void)eval:(NSString *) value {
|
|
NSLog(@"Called Eval");
|
|
}
|
|
|
|
@end
|