mirror of
https://github.com/status-im/react-native.git
synced 2025-01-19 05:51:01 +00:00
17 lines
316 B
JavaScript
17 lines
316 B
JavaScript
|
/**
|
||
|
* To lower the risk of breaking things on iOS, we are stubbing out the
|
||
|
* BackStack for now. See Backstack.android.js
|
||
|
*
|
||
|
* @providesModule Backstack
|
||
|
*/
|
||
|
|
||
|
'use strict';
|
||
|
|
||
|
var Backstack = {
|
||
|
pushNavigation: () => {},
|
||
|
resetToBefore: () => {},
|
||
|
removeComponentHistory: () => {},
|
||
|
};
|
||
|
|
||
|
module.exports = Backstack;
|