mirror of
https://github.com/Sonarr/Sonarr.git
synced 2026-04-26 22:56:23 -04:00
Convert Page components to TypeScript
This commit is contained in:
@@ -1,7 +1,8 @@
|
||||
import { createSelector } from 'reselect';
|
||||
import AppState from 'App/State/AppState';
|
||||
import { Tag } from 'App/State/TagsAppState';
|
||||
|
||||
function createTagsSelector() {
|
||||
function createTagsSelector(): (state: AppState) => Tag[] {
|
||||
return createSelector(
|
||||
(state: AppState) => state.tags.items,
|
||||
(tags) => {
|
||||
|
||||
Reference in New Issue
Block a user