meal_planner/src/components/GitHubLink.tsx
2021-03-31 16:38:20 +02:00

12 lines
231 B
TypeScript

import { FC } from "react";
export const GitHubLink: FC = () => (
<a
className="grey-text text-darken-1 right"
href="https://github.com/rjNemo/meal_planner"
target="blank"
rel="noopener"
>
GitHub
</a>
);