mirror of
https://github.com/zhigang1992/react-native.git
synced 2026-04-03 22:48:25 +08:00
Reviewed By: sahrens Differential Revision: D7961488 fbshipit-source-id: 05f9b8b0b91ae77f9040a5321ccc18f7c3c1ce9a
19 lines
245 B
JavaScript
19 lines
245 B
JavaScript
/**
|
|
* Stub of Sample for Android.
|
|
*
|
|
* @format
|
|
* @flow
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
const warning = require('fbjs/lib/warning');
|
|
|
|
const Sample = {
|
|
test: function() {
|
|
warning('Not yet implemented for Android.');
|
|
},
|
|
};
|
|
|
|
module.exports = Sample;
|