Analytics added / NewRestaurant.js added

This commit is contained in:
2020-08-10 20:14:43 +02:00
parent 769be397e5
commit 48bb74e5f8
26 changed files with 118 additions and 48 deletions

View File

@@ -0,0 +1,13 @@
import logo from "../../public/logo_mint.svg";
import React from "react";
import { useSelector } from "react-redux";
export default function LogoMain() {
let appMode = useSelector((store) => store.appMode);
if (appMode === "init") {
return <img src={logo} alt="Menui logo" className="logo" />;
} else {
return "";
}
}