17 lines
339 B
JavaScript
17 lines
339 B
JavaScript
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; |