17 lines
339 B
React
17 lines
339 B
React
![]() |
import React from "react";
|
||
|
|
||
|
function Footer() {
|
||
|
return (
|
||
|
<div className="footer">
|
||
|
<footer class="py-5 bg-dark fixed-bottom">
|
||
|
<div class="container">
|
||
|
<p class="m-0 text-center text-white">
|
||
|
Copyright © 2021
|
||
|
</p>
|
||
|
</div>
|
||
|
</footer>
|
||
|
</div>
|
||
|
);
|
||
|
}
|
||
|
|
||
|
export default Footer;
|