mirror of
https://github.com/status-im/react-native.git
synced 2025-01-16 20:44:10 +00:00
8f5ebe5952
Reviewed By: sahrens Differential Revision: D7956042 fbshipit-source-id: 221851aa311f3cdd6326497352b366048db0a1bb
17 lines
232 B
JavaScript
17 lines
232 B
JavaScript
/**
|
|
* Stub of Sample for Android.
|
|
*
|
|
* @flow
|
|
*/
|
|
'use strict';
|
|
|
|
const warning = require('fbjs/lib/warning');
|
|
|
|
const Sample = {
|
|
test: function() {
|
|
warning('Not yet implemented for Android.');
|
|
}
|
|
};
|
|
|
|
module.exports = Sample;
|