Files
todo-list/src/components/Footer.tsx
T
2024-05-04 13:37:01 +02:00

15 lines
464 B
TypeScript

export default function Footer() {
return (
<footer className={"Footer footer sticky bottom-0 py-4"}>
<p className={"inline-block w-full text-center"}>
<span className={"badge badge-md"}>
MIT Licence © 2023
<a className={"link link-hover"} href={"https://github.com/LucasVbr/todo-list"} target={"_blank"}>
See code on GitHub
</a>
</span>
</p>
</footer>
)
}