11 lines
211 B
JavaScript
11 lines
211 B
JavaScript
import { CATEGORY_SELECT } from "../constants/actionTypes";
|
|
|
|
export default (state = null, action) => {
|
|
switch (action.type) {
|
|
case CATEGORY_SELECT:
|
|
return action.option;
|
|
default:
|
|
return state;
|
|
}
|
|
};
|