import { handleActions } from "redux-actions";
import {
LIST_UPDATE_DONE,
} from "../constants/bookmark";
const bookmark = handleActions({
[LIST_UPDATE_DONE]: (state, action) => ({
...state,
...action.payload,
}),
}, {
name: "",
visibility: "",
});
export default bookmark;