fga-eps-mds/2019.1-unbrake

View on GitHub
unbrake-frontend/src/reducer/RedirectReducer.js

Summary

Maintainability
A
0 mins
Test Coverage
export default (state = {}, action) => {
  const { url } = action;

  switch (action.type) {
    case "REDIRECT_PAGE":
      return { ...state, url };
    default:
      return state;
  }
};