mirror of
https://github.com/Sonarr/Sonarr.git
synced 2026-04-21 22:05:38 -04:00
10 lines
262 B
TypeScript
10 lines
262 B
TypeScript
import { createSelector } from 'reselect';
|
|
import AppState from 'App/State/AppState';
|
|
|
|
const selectPosterOptions = createSelector(
|
|
(state: AppState) => state.seriesIndex.posterOptions,
|
|
(posterOptions) => posterOptions
|
|
);
|
|
|
|
export default selectPosterOptions;
|