ajeetchaulagain/react-clean-code-pattern

View on GitHub
src/components/Footer/index.js

Summary

Maintainability
A
0 mins
Test Coverage
import React from "react";
import PropTypes from "prop-types";

const Footer = () => {
  return (
    <div className="wrapper bg-indigo-700 py-8 px-5 text-center text-white">
      <div className="lg:container lg:mx-auto">
        <p>Made with Love by Ajeet and is opensourced on Github</p>
      </div>
    </div>
  );
};

Footer.propTypes = {};

export default Footer;