1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2024-12-16 11:37:58 +02:00
Sonarr/frontend/src/Components/withCurrentPage.js
Mark McDowall 5894b4fd95 v3 UI
2018-12-29 13:08:43 +01:00

26 lines
442 B
JavaScript

import PropTypes from 'prop-types';
import React from 'react';
function withCurrentPage(WrappedComponent) {
function CurrentPage(props) {
const {
history
} = props;
return (
<WrappedComponent
{...props}
useCurrentPage={history.action === 'POP'}
/>
);
}
CurrentPage.propTypes = {
history: PropTypes.object.isRequired
};
return CurrentPage;
}
export default withCurrentPage;