mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
Differential Revision: D39684030 fbshipit-source-id: 69f281e9e630334ca405a92f75b659795d9ad3e1
20 lines
394 B
JavaScript
20 lines
394 B
JavaScript
/**
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
* @format
|
|
* @oncall react_native
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
const reactNativeModules = require('./react-native-modules');
|
|
|
|
module.exports = {
|
|
rules: {
|
|
'react-native-modules': reactNativeModules,
|
|
},
|
|
};
|