import React from "react"; import { Container, Row, Col } from "react-bootstrap"; import { AiFillGithub, AiOutlineTwitter, AiFillInstagram, } from "react-icons/ai"; import { FaLinkedinIn } from "react-icons/fa"; function Footer() { let date = new Date(); let year = date.getFullYear(); return (

Copyright © {year} MS

); } export default Footer;