1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-27 23:06:29 -04:00

Convert app state to zustand stores

This commit is contained in:
Mark McDowall
2025-12-02 17:56:14 -08:00
parent 66efb904f2
commit 878f879c40
26 changed files with 389 additions and 435 deletions
@@ -1,13 +1 @@
import { createSelector } from 'reselect';
import AppState from 'App/State/AppState';
function createDimensionsSelector() {
return createSelector(
(state: AppState) => state.app.dimensions,
(dimensions) => {
return dimensions;
}
);
}
export default createDimensionsSelector;
// This file has been removed - use useAppDimensions or useAppDimension from App/appStore instead