state.js 280 B

1234567891011121314
  1. import { APP_STATE } from "../enums/app-state-enum";
  2. class State {
  3. constructor() {
  4. this._currentState = APP_STATE.NONE;
  5. }
  6. getCurrentState() {
  7. return this._currentState;
  8. }
  9. setState(state) {
  10. this._currentState = state;
  11. }
  12. }
  13. export const state = new State();