This repository has been archived on 2025-11-02. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
parandum/src/Footer.js

19 lines
400 B
JavaScript

import React from "react";
import { Link } from "react-router-dom";
export default function Footer(props) {
return (
<footer>
<span>&copy; Matthew Grove {new Date().getFullYear()}</span>
{
props.showTerms &&
<>
<Link to="/tos">Terms of service</Link>
<Link to="/privacy">Privacy policy</Link>
</>
}
<span>v{process.env.REACT_APP_VERSION}</span>
</footer>
)
}