react-native-macos/Libraries/Components/DatePickerAndroid/DatePickerAndroid.ios.js

22 строки
451 B
JavaScript
Исходник Обычный вид История

/**
* Copyright (c) 2015-present, Facebook, Inc.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
* @format
* @flow
*/
'use strict';
const DatePickerAndroid = {
async open(options: Object): Promise<Object> {
return Promise.reject({
message: 'DatePickerAndroid is not supported on this platform.',
});
},
};
module.exports = DatePickerAndroid;