export const ptReducer = (state = { data: {} }, action) => { switch (action.type) { case "SET_PT": return (state = action.payload); default: return state; } };