department-of-veterans-affairs/vets-website

View on GitHub
src/applications/financial-status-report/utils/checkGlobalState.js

Summary

Maintainability
A
0 mins
Test Coverage
// GlobalStateManager.js
let globalState = {
  spouseChanged: false,
};

export const setGlobalState = newState => {
  globalState = { ...globalState, ...newState };
};

export const getGlobalState = () => globalState;