UNPKG

react-native-calendars-datepicker

Version:

Customizable date picker for React Native that supports Hijri calendar

10 lines 415 B
import React, { memo } from 'react'; import { Platform } from 'react-native'; import PeriodNative from './period-native'; import PeriodWeb from './period-web'; const PeriodPicker = props => { const Component = Platform.OS === 'web' ? PeriodWeb : PeriodNative; return /*#__PURE__*/React.createElement(Component, props); }; export default /*#__PURE__*/memo(PeriodPicker); //# sourceMappingURL=period-picker.js.map