mirror of
https://github.com/Sonarr/Sonarr.git
synced 2026-03-05 13:20:20 -05:00
10 lines
272 B
TypeScript
10 lines
272 B
TypeScript
import { createSelector } from 'reselect';
|
|
import AppState from 'App/State/AppState';
|
|
|
|
const selectOverviewOptions = createSelector(
|
|
(state: AppState) => state.seriesIndex.overviewOptions,
|
|
(overviewOptions) => overviewOptions
|
|
);
|
|
|
|
export default selectOverviewOptions;
|