mirror of
https://github.com/status-im/react-navigation-stack.git
synced 2025-01-13 15:54:27 +00:00
11 lines
182 B
JavaScript
11 lines
182 B
JavaScript
/**
|
|
* eslint-env jest
|
|
*/
|
|
|
|
jest.mock('react-native-gesture-handler', () => ({
|
|
PanGestureHandler: 'PanGestureHandler',
|
|
BaseButton: 'BaseButton',
|
|
}));
|
|
|
|
import React from 'react';
|