mirror of
https://github.com/status-im/react-native.git
synced 2025-01-09 09:12:02 +00:00
18 lines
245 B
JavaScript
18 lines
245 B
JavaScript
/**
|
|
* Stub of Sample for Android.
|
|
*
|
|
* @providesModule Sample
|
|
* @flow
|
|
*/
|
|
'use strict';
|
|
|
|
var warning = require('warning');
|
|
|
|
var Sample = {
|
|
test: function() {
|
|
warning('Not yet implemented for Android.');
|
|
}
|
|
};
|
|
|
|
module.exports = Sample;
|