footer.js 252 B

12345678910111213
  1. import { useRef, useState } from "react";
  2. import { connect } from "react-redux";
  3. import { Redirect } from "react-router";
  4. const Footer = () => {
  5. return(
  6. <div className='foot'>
  7. <span><u>CODEPEN</u></span>
  8. </div>
  9. )
  10. }
  11. export default Footer