react-native-mock-tmp-build
Version:
A fully mocked and test-friendly version of react native
22 lines (17 loc) • 454 B
JavaScript
import React from 'react';
class CardStackPanResponder {
}
class PagerPanResponder {
}
class NavigationCard extends React.Component {
static CardStackPanResponder = CardStackPanResponder;
static CardStackStyleInterpolator = {
forHorizontal: () => ({}),
forVertical: () => ({}),
};
static PagerPanResponder = PagerPanResponder;
static PagerStyleInterpolator = {
forHorizontal: () => ({}),
};
}
module.exports = NavigationCard;