UNPKG
react-native-cn-month-year-picker
Version:
latest (1.7.3)
1.7.3
1.7.2
1.7.1
1.7.0
1.6.4
React Native Month Picker component for iOS & Android
CruzNadin/react-native-cn-month-year-picker
react-native-cn-month-year-picker
/
src
/
RNMonthPickerNativeComponent.js
12 lines
(8 loc)
•
271 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
import
React
from
'react'
;
import
{ requireNativeComponent }
from
'react-native'
;
const
RNMonthPickerView
= (
props
) =>
<
RNMonthPicker
{
...props
} />
;
const
RNMonthPicker
=
requireNativeComponent
(
'RNMonthPicker'
,
RNMonthPickerView
, );
export
default
RNMonthPicker
;