mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
Remove var in ReactAndroid/src/androidTest (#22135)
Summary: I removed var in ReactAndroid/src/androidTest. - [x] npm run prettier - [x] npm run flow-check-ios - [x] npm run flow-check-android [GENERAL] [ReactAndroid/src/androidTest] - remove var Pull Request resolved: https://github.com/facebook/react-native/pull/22135 Differential Revision: D12921224 Pulled By: TheSavior fbshipit-source-id: 9a14755944df642f8b82c46c691d6ed6ee8fa623
This commit is contained in:
committed by
Facebook Github Bot
parent
6f781d9c25
commit
9d132339f7
@@ -9,10 +9,10 @@
|
||||
|
||||
'use strict';
|
||||
|
||||
var BatchedBridge = require('BatchedBridge');
|
||||
var Recording = require('NativeModules').Recording;
|
||||
const BatchedBridge = require('BatchedBridge');
|
||||
const Recording = require('NativeModules').Recording;
|
||||
|
||||
var TestJSToJavaParametersModule = {
|
||||
const TestJSToJavaParametersModule = {
|
||||
returnBasicTypes: function() {
|
||||
Recording.receiveBasicTypes('foo', 3.14, true, null);
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user