mirror of
https://github.com/Radarr/Radarr.git
synced 2026-04-19 21:46:50 -04:00
21 lines
641 B
JavaScript
21 lines
641 B
JavaScript
import { connect } from 'react-redux';
|
|
import { createSelector } from 'reselect';
|
|
import createUISettingsSelector from 'Store/Selectors/createUISettingsSelector';
|
|
import RelativeDateCell from './RelativeDateCell';
|
|
|
|
function createMapStateToProps() {
|
|
return createSelector(
|
|
createUISettingsSelector(),
|
|
(uiSettings) => {
|
|
return {
|
|
showRelativeDates: uiSettings.showRelativeDates,
|
|
shortDateFormat: uiSettings.shortDateFormat,
|
|
longDateFormat: uiSettings.longDateFormat,
|
|
timeFormat: uiSettings.timeFormat
|
|
};
|
|
}
|
|
);
|
|
}
|
|
|
|
export default connect(createMapStateToProps, null)(RelativeDateCell);
|