redesign and fixes

This commit is contained in:
2021-02-05 19:57:06 +01:00
parent c712d614e1
commit 611b101e9e
15 changed files with 243 additions and 50 deletions

View File

@@ -347,3 +347,17 @@ export const updateRestaurant = (restaurant) => {
payload: restaurant,
};
};
export const setTags = (tags) => {
return {
type: "SET_TAGS",
payload: tags
}
}
export const setTypes = (types) => {
return {
type: "SET_TYPES",
payload: types
}
}