updated comment

This commit is contained in:
codebyalex 2019-03-21 06:00:43 -04:00
parent 904565bff2
commit efea3c2d46

View File

@ -8,7 +8,7 @@ export function addElement(payload: any) {
return { type: ADD_ELEMENT, payload };
}
// clear elements is a function to remove elements from the map
// clear elements is a function to remove elements from the map and reset elements to their original state
export function clearElements(payload: any) {
return { type: CLEAR_ELEMENTS, payload };
}
@ -30,7 +30,6 @@ function rootReducer(state = initialState, action: any) {
return state;
}
// store
const store = createStore(rootReducer);
export default store;