mirror of
https://github.com/0xShay/ticketchain.git
synced 2026-01-11 21:23:24 +00:00
13 lines
251 B
TypeScript
13 lines
251 B
TypeScript
import React from 'react';
|
|
|
|
const Footer = () => {
|
|
return (
|
|
<footer className="text-center mt-8">
|
|
<p className="text-gray-500">
|
|
© 2024 Ticket Chain. All rights reserved.
|
|
</p>
|
|
</footer>
|
|
);
|
|
};
|
|
export default Footer;
|