randt's picture
Add 17 files
1ddbce4 verified
raw
history blame contribute delete
195 Bytes
import React from 'react';
const Footer = () => {
return (
<footer className="bg-gray-200 py-4 text-center">
<p>&copy; 2023 My Company</p>
</footer>
);
};
export default Footer;