aboutsummaryrefslogtreecommitdiffstats
path: root/public/projects/react-small-apps/apps/notebook/src/components/layout/Footer/Footer.js
blob: 20a87f2a768b5fc095181c3be697272539f421e4 (plain)
1
2
3
4
5
6
7
8
9
10
11
import "./Footer.css";

function Footer() {
  return (
    <footer className="footer">
      <p className="footer__copyright">Notebook. MIT 2021. Armand Philippot.</p>
    </footer>
  );
}

export default Footer;