File size: 195 Bytes
1ddbce4
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
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;