modules-pack
Version:
JavaScript Modules for Modern Frontend & Backend Projects
18 lines (15 loc) • 413 B
JavaScript
/**
* STATE DATA ==================================================================
* Initial State or Test Data - used to launch the app initially
* =============================================================================
*/
const initState = {
location: {
pathname: '/',
query: {},
state: undefined,
},
nextLocation: undefined,
prevLocation: undefined,
}
export default initState