kandimat/redaktions-app/src/components/Copyright.tsx
2021-01-09 12:49:28 +01:00

17 lines
446 B
TypeScript

import Typography from "@material-ui/core/Typography";
import Link from "@material-ui/core/Link";
import React from "react";
export function Copyright() {
return (
<Typography variant="body2" color="textSecondary" align="center">
{"Copyright © "}
<Link color="inherit" href="https://blog.netzbegruenung.de/">
Netzbegruenung e.V.
</Link>{" "}
{new Date().getFullYear()}
{"."}
</Typography>
);
}