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

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

2019-03-01 21:09:07 +03:00
/**
* 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
*/
// TODO(macOS ISS#2323203)
'use strict';
const DatePickerAndroid = {
async open(options: Object): Promise<Object> {
return Promise.reject({
message: 'DatePickerAndroid is not supported on this platform.',
2019-03-01 21:09:07 +03:00
});
},
};
module.exports = DatePickerAndroid;