Footer.jsx 164 B

1234567891011
  1. import React from 'react';
  2. const Footer = () => {
  3. return (
  4. <div className='footer'>
  5. Footer
  6. </div>
  7. );
  8. };
  9. export default Footer;