Skip to content
Snippets Groups Projects
Select Git revision
  • 6189e5d5dacd78a9540546d52dfa82839fc0f041
  • main default protected
2 results

Footer.js

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    Footer.js 389 B
    // Footer.js
    import React from 'react';
    import { Link } from 'react-router-dom';
    import '../css/Footer.css'
    
    function Footer() {
        return (
            <footer>
                <p>© 2024 ElectroMart, Inc.</p>
                <Link to="">About Us</Link>
                <Link to="">Terms of Service</Link>
                <Link to="">Privacy Policy</Link>
            </footer>
        );
    }
    
    export default Footer;