feat(global-state-store): ✨ implement GlobalStateStore and utils
* Create GlobalStateStore for managing application state. * Add utility functions for loading and saving state to storage. * Define types for global state and session management. * Implement ProgramDataWrapper for fetching and updating program data.
This commit is contained in:
9
src/GlobalStateStore/index.ts
Normal file
9
src/GlobalStateStore/index.ts
Normal file
@@ -0,0 +1,9 @@
|
||||
export { ProgramDataWrapper } from './src/ProgramDataWrapper'
|
||||
export {
|
||||
getApiURL,
|
||||
setApiURL,
|
||||
programDataStore,
|
||||
useProgramDataStore,
|
||||
} from './src/store/ProgramDataStore.store'
|
||||
|
||||
export type * from './src/types'
|
||||
Reference in New Issue
Block a user