Radarr/frontend/src/Movie/Index/Posters/selectPosterOptions.ts

10 lines
261 B
TypeScript

import { createSelector } from 'reselect';
import AppState from 'App/State/AppState';
const selectPosterOptions = createSelector(
(state: AppState) => state.movieIndex.posterOptions,
(posterOptions) => posterOptions
);
export default selectPosterOptions;