mern-lpu-hrd-project/frontend/src/components/footer.js

18 lines
372 B
JavaScript

import React from "react";
import "./css/footer.css";
class Footer extends React.Component {
render() {
return (
<div>
<footer class="background">
<p class="text-footer">
CopyRight &copy; www.Medicare.com..All Right are Reserved.
</p>
</footer>
</div>
);
}
}
export default Footer;