modules-pack
Version:
JavaScript Modules for Modern Frontend & Backend Projects
20 lines (16 loc) • 667 B
JavaScript
import { Active, GET, performStorage } from 'utils-pack'
import { USER } from './constants'
/**
* STATE DATA ==================================================================
* Initial State or Test Data - used to launch the app initially
* =============================================================================
*/
const initState = {
self: Active.user = {
// @Note: in backend, performStorage returns promise, and resolves to nothing,
// but it does not matter, since only frontend needs to retrieve from localStorage.
...(typeof window === 'undefined') ? {} : performStorage(GET, USER),
},
loading: false
}
export default initState