1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-28 23:16:32 -04:00

Convert Media Management settings to TypeScript

This commit is contained in:
Mark McDowall
2024-12-31 17:38:43 -08:00
parent 839658a698
commit 27f81117ed
10 changed files with 605 additions and 779 deletions
+8
View File
@@ -0,0 +1,8 @@
import { useSelector } from 'react-redux';
import AppState from 'App/State/AppState';
function useIsWindows() {
return useSelector((state: AppState) => state.system.status.item.isWindows);
}
export default useIsWindows;