import React from "react"; import { Box, Typography, Container, Link, Grid } from "@mui/material"; import { VERSION } from "../version"; function Footer() { return ( JMESPath Testing Tool{" "} {VERSION === "unknown" ? VERSION : `v${VERSION}`} - Created for testing and validating JMESPath expressions Licensed under{" "} MIT License {" "} |{" "} Learn JMESPath ); } export default Footer;