mirror of
https://github.com/rjNemo/meal_planner
synced 2026-06-12 13:26:45 +00:00
12 lines
231 B
TypeScript
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>
|
|
);
|