mirror of
https://github.com/rjNemo/meal_planner
synced 2026-06-10 04:16:50 +00:00
14 lines
258 B
JavaScript
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>
|
|
);
|
|
};
|