mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
6e3389c82b
Summary: Includes these commits: - **[349ff315b](https://github.com/facebook/react/commit/349ff315b )**: [Native] Delete NativeComponent and NativeMethodsMixin (#18036) //<Eli White>// Changelog: [General][Changed] - React Native sync for revisions 241c4467...349ff315b Reviewed By: zackargyle Differential Revision: D19893829 fbshipit-source-id: 77f35d6b7a0ddf375941c3185decf3862b6807a7
18 lines
388 B
JavaScript
18 lines
388 B
JavaScript
/**
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
* @flow
|
|
* @format
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
const createReactNativeComponentClass = require('../Renderer/shims/createReactNativeComponentClass');
|
|
|
|
module.exports = {
|
|
createReactNativeComponentClass,
|
|
};
|