Convert createTagsSelector to typescript

This commit is contained in:
Bogdan
2024-04-21 12:48:48 +03:00
parent badc2567c3
commit 420824b279

View File

@@ -1,8 +1,9 @@
import { createSelector } from 'reselect';
import AppState from 'App/State/AppState';
function createTagsSelector() {
return createSelector(
(state) => state.tags.items,
(state: AppState) => state.tags.items,
(tags) => {
return tags;
}