UNPKG

exit-on-double-back

Version:

Exits app when back button is pressed twice in the passed interval on the index route of react-navigation

11 lines (7 loc) 263 B
import React from 'react'; import PropTypes from 'prop-types'; const EmptyWrapperComponent = ({children}) => children; EmptyWrapperComponent.propTypes = { children: PropTypes.element.isRequired //accepts single child }; export default EmptyWrapperComponent;