Package updates / Redux toolkit / TS interface / boilerplate

This commit is contained in:
2022-07-21 18:16:10 +02:00
parent 66db7b4748
commit c0b1a35e58
12 changed files with 25552 additions and 14220 deletions

View File

@@ -1,12 +0,0 @@
const autoCompleteReducer = (state = [], action) => {
switch (action.type) {
case "AUTOCOMPLETE_ADD":
return action.payload;
case "AUTOCOMPLETE_CLEAR":
return (state = []);
default:
return state;
}
};
export default autoCompleteReducer;