Files
react-native/Libraries/Components/TextInput/AndroidTextInputNativeComponent.js
Rick Hanlon 0b3f99bf93 Move requireNativeComponent calls to standalone files
Summary: Moves a number of requireNativeComponent calls to standalone files to support codegen

Reviewed By: TheSavior

Differential Revision: D14654018

fbshipit-source-id: 349b975cd3a99a9373b2b9b1a19aa311d7c36399
2019-03-29 18:50:19 -07:00

20 lines
420 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';
import {requireNativeComponent} from 'react-native';
const AndroidTextInputNativeComponent = requireNativeComponent(
'AndroidTextInput',
);
export default AndroidTextInputNativeComponent;