fga-eps-mds/2019.1-unbrake

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

Summary

Maintainability
A
0 mins
Test Coverage
export default (state = {}, action) => {
  switch (action.type) {
    case "ADD_FILE":
      return { filename: action.filename };

    default:
      return state;
  }
};