2015-03-28 15:50:31 +00:00
|
|
|
/**
|
2018-05-11 12:43:48 -07: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.
|
|
|
|
*
|
2015-03-28 15:50:31 +00:00
|
|
|
* Stub of Sample for Android.
|
|
|
|
*
|
2018-05-10 19:06:46 -07:00
|
|
|
* @format
|
2018-08-08 10:39:16 -07:00
|
|
|
* @flow
|
2015-03-28 15:50:31 +00:00
|
|
|
*/
|
2018-05-10 19:06:46 -07:00
|
|
|
|
2015-03-28 15:50:31 +00:00
|
|
|
'use strict';
|
|
|
|
|
2018-05-10 15:44:52 -07:00
|
|
|
const warning = require('fbjs/lib/warning');
|
2015-03-28 15:50:31 +00:00
|
|
|
|
2018-05-10 15:44:52 -07:00
|
|
|
const Sample = {
|
2015-03-28 15:50:31 +00:00
|
|
|
test: function() {
|
2015-05-26 14:12:28 -07:00
|
|
|
warning('Not yet implemented for Android.');
|
2018-05-10 19:06:46 -07:00
|
|
|
},
|
2015-03-28 15:50:31 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
module.exports = Sample;
|