react-native-passcode-auth/examples/PasscodeAuthExample/Libraries/PasscodeAuth/PasscodeAuth.android.js
2016-01-11 22:11:02 -05:00

18 lines
269 B
JavaScript

/**
* Stub of PasscodeAuth for Android.
*
* @providesModule PasscodeAuth
* @flow
*/
'use strict';
var warning = require('warning');
var PasscodeAuth = {
test: function() {
warning('Not yet implemented for Android.');
}
};
module.exports = PasscodeAuth;