Footer.js 154 B

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