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,23 @@
import React from "react";
import { withStyles } from "@material-ui/core/styles";
import Button from "@material-ui/core/Button";
const StylizedButton = withStyles({
root: {
background: "#d68000",
color: "#262626",
margin: "16px 16px 16px 16px",
padding: "8px 16px 8px 16px",
borderColor: "white",
"&:hover": {
backgroundColor: "#b46c00",
},
},
label: {
textTransform: "none",
},
})(Button);
export default function ButtonSecondary(props) {
return <StylizedButton onClick={props.onClick}>{props.text}</StylizedButton>;
}