import * as React from "react";
const imgStyle = {
maxHeight: "42px",
width: "42px",
marginLeft: "20px",
marginRight: "20px"
};
const ToolLogo = ({ href, logoName, alt }: { href: string; logoName: string; alt: string }) => {
return (
);
};
// due to bug in prettier, the // are interpreted as comments in JSX, so
// declare the URLs here as constant
const githubUrl = "https://github.com/spring-petclinic/spring-petclinic-graphql";
const Footer = () =>