Add Restaurant work

This commit is contained in:
2020-08-11 21:16:27 +02:00
parent 48bb74e5f8
commit e4a4d3951d
10 changed files with 487 additions and 18 deletions

View File

@@ -90,3 +90,15 @@ export const setLoginResult = (text) => {
payload: text,
};
};
export const hideNewRestaurantDialog = () => {
return {
type: "DIALOG_NEWRESTAURANT_HIDE",
};
};
export const showNewRestaurantDialog = () => {
return {
type: "DIALOG_NEWRESTAURANT_SHOW",
};
};