mirror of
https://github.com/rjNemo/meal_planner
synced 2026-06-06 10:36:43 +00:00
12 lines
219 B
JavaScript
12 lines
219 B
JavaScript
import React from "react";
|
||
|
||
export const CopyrightText = () => {
|
||
return (
|
||
<span>
|
||
© 2020 - Chef's - Made with{" "}
|
||
<span role="img" aria-label="heart">
|
||
❤️
|
||
</span>
|
||
</span>
|
||
);
|
||
};
|