meal_planner/src/components/GitHubLink.jsx
2020-02-08 21:50:28 +01:00

14 lines
258 B
JavaScript

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