💡 Document all Redux store files

This commit is contained in:
Philipp Stracker 2024-11-18 18:51:11 +01:00
parent fee9a016c6
commit ef873dcda2
No known key found for this signature in database
7 changed files with 69 additions and 0 deletions

View file

@ -1,3 +1,13 @@
/**
* Selectors: Extract specific pieces of state from the store.
*
* These functions provide a consistent interface for accessing store data.
* They allow components to retrieve data without knowing the store structure.
* Exported functions must have unique names across all store modules.
*
* @file
*/
import { STORE_KEY } from './constants';
const EMPTY_OBJ = Object.freeze( {} );